File: changelog

package info (click to toggle)
astropy 7.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 35,328 kB
  • sloc: python: 233,437; ansic: 55,264; javascript: 17,680; lex: 8,621; sh: 3,317; xml: 2,287; makefile: 191
file content (1494 lines) | stat: -rw-r--r-- 45,945 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
astropy (7.0.1-3) unstable; urgency=medium

  * Ignore more tests that may fail in future (Closes: #1078611)

 -- Ole Streicher <olebole@debian.org>  Wed, 07 May 2025 20:57:05 +0200

astropy (7.0.1-2) unstable; urgency=medium

  * Weaken or ignore tests that fail in future

 -- Ole Streicher <olebole@debian.org>  Sat, 15 Feb 2025 15:07:12 +0100

astropy (7.0.1-1) unstable; urgency=medium

  * New upstream version 7.0.1
  * Drop patches that were applied upstream

 -- Ole Streicher <olebole@debian.org>  Fri, 07 Feb 2025 10:02:10 +0100

astropy (7.0.0-5) unstable; urgency=medium

  * Xfail more tests that fail on mips64el

 -- Ole Streicher <olebole@debian.org>  Sun, 02 Feb 2025 14:06:28 +0100

astropy (7.0.0-4) unstable; urgency=medium

  * Adjust last doctest patch from issue comments
  * Mark more tests xfail that fail on mips64el (Closes: #1094883)

 -- Ole Streicher <olebole@debian.org>  Sun, 02 Feb 2025 12:05:10 +0100

astropy (7.0.0-3) unstable; urgency=medium

  * TST: fix 32-bit portability issue in a table doctest (Closes: #1094749)

 -- Ole Streicher <olebole@debian.org>  Fri, 31 Jan 2025 13:00:47 +0100

astropy (7.0.0-2) unstable; urgency=medium

  * TST: adapt test completness metatest for numpy 2.2 (Closes: #1094690)

 -- Ole Streicher <olebole@debian.org>  Thu, 30 Jan 2025 10:28:09 +0100

astropy (7.0.0-1) unstable; urgency=medium

  * New upstream version 7.0.0
  * Rediff patches
  * Drop Mark-two-future-test-as-remote_data.patch: fixed upstream
  * Make some more tests xfail that sometimes fail under mips64el
  * Mark one test as xfail that sometimes fails on i386 (Closes: #1087612)

 -- Ole Streicher <olebole@debian.org>  Fri, 22 Nov 2024 15:54:04 +0100

astropy (6.1.5-2) unstable; urgency=medium

  * Temporarily disable h5py (build-)test dependency

 -- Ole Streicher <olebole@debian.org>  Fri, 15 Nov 2024 22:39:33 +0100

astropy (7.0.0~rc1-1) experimental; urgency=medium

  * New upstream release candidate 7.0.0~rc1. Switch to experimental.
  * Rediff patches
  * Skip system_info doctest that fails during build
  * Mark three future test as remote_data

 -- Ole Streicher <olebole@debian.org>  Sat, 09 Nov 2024 11:52:55 +0100

astropy (6.1.5-1) unstable; urgency=medium

  * New upstream version 6.1.5
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Sat, 09 Nov 2024 10:31:03 +0100

astropy (6.1.4-2) unstable; urgency=medium

  [ Benjamin Drung ]
  * Correct python3-pytzdata dependency to python3-tz

  [ Ole Streicher ]
  * Remove outdated pkg-resources dependency in astropy-utils (Closes: #1083305)

 -- Ole Streicher <olebole@debian.org>  Sun, 06 Oct 2024 12:12:33 +0200

astropy (6.1.4-1) unstable; urgency=medium

  * New upstream version 6.1.4
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Sun, 29 Sep 2024 13:47:48 +0200

astropy (6.1.3-1) unstable; urgency=medium

  * New upstream version 6.1.3
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Fri, 30 Aug 2024 19:43:53 +0200

astropy (6.1.2-1) unstable; urgency=medium

  * New upstream version 6.1.2
  * Rediff patches
  * Allow older matplotlib when building docs

 -- Ole Streicher <olebole@debian.org>  Thu, 25 Jul 2024 13:42:19 +0200

astropy (6.1.1-1) unstable; urgency=medium

  * New upstream version 6.1.1. Closes: #1074824
  * Rediff patches
  * Push Standards-Version to 4.7.0. No changes needed.

 -- Ole Streicher <olebole@debian.org>  Mon, 01 Jul 2024 10:12:14 +0200

astropy (6.0.1-4) unstable; urgency=medium

  * Fix usage of dimensionless quantity as an exponent

 -- Ole Streicher <olebole@debian.org>  Mon, 22 Apr 2024 12:33:10 +0200

astropy (6.0.1-3) unstable; urgency=medium

  * Disable another overflow check warning
  * Drop Dependency on python3-distutils.

 -- Ole Streicher <olebole@debian.org>  Fri, 12 Apr 2024 10:24:30 +0200

astropy (6.0.1-2) unstable; urgency=medium

  * Skip more overflow warning checks that cause CI test failures on armel
  * Force no-color for pytest

 -- Ole Streicher <olebole@debian.org>  Thu, 11 Apr 2024 15:06:26 +0200

astropy (6.0.1-1) unstable; urgency=medium

  * New upstream version 6.0.1. Closes: #1063970
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Tue, 26 Mar 2024 20:51:49 +0100

astropy (6.0.0-1) unstable; urgency=medium

  * New upstream version 6.0.0.
  * Rediff patches
  * Switch back to unstable.
  * New build dependency python3-tomli

 -- Ole Streicher <olebole@debian.org>  Tue, 26 Dec 2023 19:56:52 +0100

astropy (6.0.0~rc2-2) experimental; urgency=medium

  * Revert "Don't call cython"
  * Require cython-3.0 as build dependency. Closes: #1056790

 -- Ole Streicher <olebole@debian.org>  Sun, 26 Nov 2023 11:09:00 +0100

astropy (6.0.0~rc2-1) experimental; urgency=medium

  * New upstream release candidate 6.0.0~rc2
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Thu, 23 Nov 2023 08:21:10 +0100

astropy (6.0.0~rc1-1) experimental; urgency=medium

  * New upstream release candidate 6.0.0~rc1
  * Switch to experimental
  * Rediff patches. Drop patch applied upstrean.
  * Temporarily use pre-generated cython files
  * Add new build dependencies
  * Adjust generation of PLY files

 -- Ole Streicher <olebole@debian.org>  Wed, 15 Nov 2023 20:48:18 +0100

astropy (5.3.4-2) unstable; urgency=medium

  * Account for SOFA/ERFA bugfix in pvstar (Closes: #1054775)

 -- Ole Streicher <olebole@debian.org>  Wed, 01 Nov 2023 10:05:00 +0100

astropy (5.3.4-1) unstable; urgency=medium

  * New upstream version 5.3.4
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Thu, 05 Oct 2023 07:55:45 +0200

astropy (5.3.3-1) unstable; urgency=medium

  * New upstream version 5.3.3
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Fri, 08 Sep 2023 07:58:17 +0200

astropy (5.3.2-1) unstable; urgency=medium

  * New upstream version 5.3.2
  * Rediff patches
  * Add tzdata to test dependencies

 -- Ole Streicher <olebole@debian.org>  Wed, 16 Aug 2023 18:43:48 +0200

astropy (5.3.1-2) unstable; urgency=medium

  * Don't check overflow warning that doesn't appear on armel

 -- Ole Streicher <olebole@debian.org>  Mon, 10 Jul 2023 14:57:15 +0200

astropy (5.3.1-1) unstable; urgency=medium

  * New upstream version 5.3.1
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Mon, 10 Jul 2023 08:43:20 +0200

astropy (5.3-1) unstable; urgency=medium

  * New upstream version 5.3
  * Switch back to unstable
  * Rediff patches
  * Remove unneeded minversions from build dep

 -- Ole Streicher <olebole@debian.org>  Fri, 23 Jun 2023 21:36:52 +0200

astropy (5.3~rc1-1) experimental; urgency=medium

  * New upstream version 5.3~rc1
  * Rediff patches
  * Don't build depend on cfitsio anymore

 -- Ole Streicher <olebole@debian.org>  Mon, 08 May 2023 10:55:18 +0200

astropy (5.2.1-2) unstable; urgency=medium

  * Mark LevMarLSQFitter test xfail (Closes: #1030012)

 -- Ole Streicher <olebole@debian.org>  Thu, 02 Feb 2023 09:06:27 +0100

astropy (5.2.1-1) unstable; urgency=medium

  [Ole Streicher]
  * New upstream version 5.2.1. Closes: #1027191
  * Rediff patches
  * Push Standards-Version to 4.6.2. No changes
  * Add towncrier to build deps
  * Update changelog for 5.2.1-1 release

  [ Bas Couwenberg ]
  * Fix gitlab-ci.yml syntax.
  * Enable all hardening buildflags.
  * Bump watch file version to 4.
  * Allow reprotest to fail.
  * Add gbp.conf to use pristine-tar & --source-only-changes by default.

 -- Ole Streicher <olebole@debian.org>  Thu, 12 Jan 2023 07:31:33 +0100

astropy (5.2-1) unstable; urgency=medium

  * New upstream version 5.2. Switch back to unstable.
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Wed, 14 Dec 2022 10:26:03 +0100

astropy (5.2~rc1-1) experimental; urgency=medium

  * Upstream release candidate 5.2~rc1. Switch to experimental.
  * Rediff patches. Drop patches that were applied upstream.

 -- Ole Streicher <olebole@debian.org>  Thu, 01 Dec 2022 18:16:42 +0100

astropy (5.1.1-1) unstable; urgency=medium

  * New upstream version 5.1.1
  * Rediff patches
  * Remove outdate license statement: erfa sources are gone
  * Update lintian overrides
  * Ignore warnings about distutils/setuptools import order

 -- Ole Streicher <olebole@debian.org>  Sun, 23 Oct 2022 14:25:49 +0200

astropy (5.1-4) unstable; urgency=medium

  * Compatibility with Python 3.11 (Closes: #1019708)

 -- Ole Streicher <olebole@debian.org>  Fri, 16 Sep 2022 15:44:52 +0200

astropy (5.1-3) unstable; urgency=medium

  * Ignore any "invalid value" warnings to fix FTBFS on mips64el

 -- Ole Streicher <olebole@debian.org>  Thu, 30 Jun 2022 08:05:28 +0200

astropy (5.1-2) unstable; urgency=medium

  * Temporarily disable restriction for matplotlib version (Closes: #1013599)

 -- Ole Streicher <olebole@debian.org>  Wed, 29 Jun 2022 20:55:56 +0200

astropy (5.1-1) unstable; urgency=medium

  * New upstream version 5.1. Switch back to unstable.
  * Rediff patches
  * Push Standards-Version to 4.6.1. No changes needed

 -- Ole Streicher <olebole@debian.org>  Fri, 27 May 2022 10:15:21 +0200

astropy (5.1~rc1-3) experimental; urgency=medium

  * xfail test_fit_with_fixed_and_bound_constraints failure

 -- Ole Streicher <olebole@debian.org>  Wed, 04 May 2022 18:50:59 +0200

astropy (5.1~rc1-2) experimental; urgency=medium

  * Bugfix for fitting test failures on several archs

 -- Ole Streicher <olebole@debian.org>  Tue, 03 May 2022 16:35:53 +0200

astropy (5.1~rc1-1) experimental; urgency=medium

  * New upstream release candidate 5.1~rc1. Switch to experimental.
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Tue, 03 May 2022 11:49:35 +0200

astropy (5.0.4-1) unstable; urgency=medium

  * New upstream version 5.0.4
  * Drop Update-WCSLIB-support-to-version-7.9.patch: applied upstream

 -- Ole Streicher <olebole@debian.org>  Fri, 01 Apr 2022 08:11:01 +0200

astropy (5.0.3-1) unstable; urgency=medium

  * New upstream version 5.0.3
  * Drop Remove-tests-that-depend-on-line-width.patch: fixed upstream

 -- Ole Streicher <olebole@debian.org>  Mon, 28 Mar 2022 15:28:36 +0200

astropy (5.0.2-2) unstable; urgency=medium

  * Update WCSLIB support to version 7.9

 -- Ole Streicher <olebole@debian.org>  Sun, 27 Mar 2022 12:25:58 +0200

astropy (5.0.2-1) unstable; urgency=medium

  * New upstream version 5.0.2
  * Rediff patches
  * Lower pytest version requirement
  * Remove tests that depend on line width

 -- Ole Streicher <olebole@debian.org>  Fri, 11 Mar 2022 09:51:02 +0100

astropy (5.0.1-1) unstable; urgency=medium

  * New upstream version 5.0.1
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Thu, 27 Jan 2022 11:58:38 +0100

astropy (5.0-1) unstable; urgency=medium

  * New stable upstream version 5.0. Switch back to unstable.
  * Rediff patches
  * Use FLOAT_CMP to fix test failure on i386 and others
  * Temporarily disable pandas build-dep to speed up Py3.9+3.10 transition

 -- Ole Streicher <olebole@debian.org>  Mon, 22 Nov 2021 15:55:32 +0100

astropy (5.0~rc2-1) experimental; urgency=medium

  * New upstream version 5.0~rc2
  * Rediff patches
  * Remove outdated Breaks+Replaces pyfits-utils

 -- Ole Streicher <olebole@debian.org>  Thu, 11 Nov 2021 12:18:49 +0100

astropy (5.0~rc1-5) experimental; urgency=medium

  * Convert all the floating point comparisons for test_spline to assert_allclose

 -- Ole Streicher <olebole@debian.org>  Fri, 05 Nov 2021 16:56:47 +0100

astropy (5.0~rc1-4) experimental; urgency=medium

  * Install all possible dependencies for CI tests
  * Re-xfail test that fails on mipsel
  * Replace exact assert_equal with assert_all_close for doubles
  * Revert "Enable verbose test output and enable tests on mipsel"
  * Don't run hypothesis tests during build or CI tests

 -- Ole Streicher <olebole@debian.org>  Fri, 05 Nov 2021 14:40:18 +0100

astropy (5.0~rc1-3) experimental; urgency=medium

  * Use build profiles <nodoc> and <nocheck>
  * Add pandas and skimage to build-deps for testing
  * Replace simple spline test fix with upstream's proposal
  * Enable verbose test output and enable tests on mipsel
  * Re-enable some tests on mips64el

 -- Ole Streicher <olebole@debian.org>  Fri, 05 Nov 2021 07:55:16 +0100

astropy (5.0~rc1-2) experimental; urgency=medium

  * Replace assert for non-zero doubles with assert_allclose

 -- Ole Streicher <olebole@debian.org>  Thu, 04 Nov 2021 20:05:11 +0100

astropy (5.0~rc1-1) experimental; urgency=medium

  * New upstream release candidate 5.0~rc1. Switch to experimental
  * Rediff patches
  * Remove outdated versionized (build) dependencies
  * Push Standards-Version to 4.6.0. No changes needed.
  * Fix internal astropy version number check
  * Remove versionized sphinx dependency and unpackaged sphinx-changelog
  * Ensure no unexpected failures in treating deprecations as exceptions.

 -- Ole Streicher <olebole@debian.org>  Thu, 04 Nov 2021 11:47:53 +0100

astropy (4.3.1-4) unstable; urgency=medium

  * Lower Breaks: version for astroqery to release with backported patch

 -- Ole Streicher <olebole@debian.org>  Fri, 24 Sep 2021 20:50:53 +0200

astropy (4.3.1-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Add missing build dependency on dh addon.
  * Set field Upstream-Contact in debian/copyright.
  * Set upstream metadata fields: Bug-Submit, Repository, Repository-Browse.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
  * Fix day-of-week for changelog entry 0.2.1-1~exp1.

  [ Ole Streicher ]
  * Update dependency versions; remove outdated build deps
  * Update cfitsio support to 4.0.0
  * Drop Ignore-FixedWCS-success-warnings.patch: fixed upstream
  * Ignore invalid multiply warnings that happen on mips64el

 -- Ole Streicher <olebole@debian.org>  Fri, 24 Sep 2021 08:31:20 +0200

astropy (4.3.1-2) unstable; urgency=medium

  * Absorb numpy and scipy RuntimeWarning to fix FTBFS on i386

 -- Ole Streicher <olebole@debian.org>  Tue, 17 Aug 2021 08:22:37 +0200

astropy (4.3.1-1) unstable; urgency=medium

  * Merge main and experimental branches
  * New upstream version 4.3.1
  * Rediff patches
  * Switch back to unstable

 -- Ole Streicher <olebole@debian.org>  Mon, 16 Aug 2021 16:14:33 +0200

astropy (4.3~rc1-2) experimental; urgency=medium

  * Skip test that fails on mips64el

 -- Ole Streicher <olebole@debian.org>  Fri, 25 Jun 2021 10:46:09 +0200

astropy (4.3~rc1-1) experimental; urgency=medium

  * New upstream version 4.3~rc1. Switch to experimental.
  * Rediff patches
  * Ignore FixedWCS success "warnings"
  * Don't rely on sphinx_changelog

 -- Ole Streicher <olebole@debian.org>  Wed, 23 Jun 2021 10:11:01 +0200

astropy (4.2-6) unstable; urgency=medium

  * Ignore IERSStaleWarning in pytest (Closes: #991654)

 -- Ole Streicher <olebole@debian.org>  Thu, 29 Jul 2021 18:12:43 +0200

astropy (4.2-5) unstable; urgency=medium

  * Fix leap second update when using a non english locale
  * Temporarily disable pyephem test (erfa update)

 -- Ole Streicher <olebole@debian.org>  Fri, 12 Feb 2021 11:05:34 +0100

astropy (4.2-4) unstable; urgency=medium

  * Updated tests to WCSLIB 7.4
  * Add wcsapi_test.*.so to d/missing

 -- Ole Streicher <olebole@debian.org>  Mon, 01 Feb 2021 15:06:33 +0100

astropy (4.2-3) unstable; urgency=medium

  * Disable build time test on mipsel

 -- Ole Streicher <olebole@debian.org>  Thu, 21 Jan 2021 20:05:34 +0100

astropy (4.2-2) unstable; urgency=medium

  * Ignore RuntimeWarnings from newer scipy (Closes: #980700)
  * Push Standards-Version to 4.5.1. No changes needed

 -- Ole Streicher <olebole@debian.org>  Wed, 20 Jan 2021 22:31:05 +0100

astropy (4.2-1) unstable; urgency=medium

  * New upstream version 4.2. Switch back to unstable
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Wed, 25 Nov 2020 13:27:46 +0100

astropy (4.2~rc1-2) experimental; urgency=medium

  * Relax bbox_size tolerances for Freetype != 2.6.1
  * Ignore FPE warnings for armel build

 -- Ole Streicher <olebole@debian.org>  Wed, 11 Nov 2020 09:25:51 +0100

astropy (4.2~rc1-1) experimental; urgency=medium

  * New upstream RC version 4.2~rc1. Switch to experimental
  * Rediff patches
  * Adjust build dependencies
  * Mark test_bbox_size as xfail

 -- Ole Streicher <olebole@debian.org>  Mon, 09 Nov 2020 10:58:40 +0100

astropy (4.1-2) unstable; urgency=medium

  * Switch back to unstable

 -- Ole Streicher <olebole@debian.org>  Wed, 28 Oct 2020 12:51:24 +0100

astropy (4.1-1) experimental; urgency=medium

  * Remove upstream GPG key
  * New upstream version 4.1. Rediff patches
  * Remove leading slash in d/not-installed entry

 -- Ole Streicher <olebole@debian.org>  Wed, 28 Oct 2020 09:25:31 +0100

astropy (4.1~rc2-4) experimental; urgency=medium

  * Replace local fix for Skip flaky modeling test with upstream patch
  * Skip test_timer (obsolete) which failed once on s390x

 -- Ole Streicher <olebole@debian.org>  Wed, 14 Oct 2020 08:29:53 +0200

astropy (4.1~rc2-3) experimental; urgency=medium

  * Mark test_compound_fitting_with_units as xfail
  * Unconditionally skip wcsapi test if compilation fails

 -- Ole Streicher <olebole@debian.org>  Tue, 13 Oct 2020 11:44:01 +0200

astropy (4.1~rc2-2) experimental; urgency=medium

  * Never use setuptools_scm except when importing astropy from within
    a checkout of the git repository
  * Temporarily allow "make docs" to fail
  * Allow file not to be installed
  * Add _version.py to d/clean

 -- Ole Streicher <olebole@debian.org>  Mon, 12 Oct 2020 20:46:32 +0200

astropy (4.1~rc2-1) experimental; urgency=low

  * New upstream version 4.1~rc2. Rediff patches
  * Add "Rules-Requires-Root: no" to d/control
  * Remove outdated source lintian-override
  * Remove unused wildcard in d/copyright
  * Push dh-compat to 13. Create d/not-installed file

 -- Ole Streicher <olebole@debian.org>  Thu, 17 Sep 2020 09:39:25 +0200

astropy (4.1~rc1-2) experimental; urgency=medium

  * Update WCSLIB compatibility to v7.3

 -- Ole Streicher <olebole@debian.org>  Fri, 12 Jun 2020 21:26:07 +0200

astropy (4.1~rc1-1) experimental; urgency=low

  * New upstream RC version 4.1~rc1. Switch to experimental.
  * Rediff patches
  * Use environment variable to specify usage of system libs
  * Push Standards-Version to 4.5.0. No changes needed
  * Remove outdated version numbers from (build) dependencies
  * Make setuptools-scm happy
  * Remove '--offline' argument of setup.py
  * Replace astropy-helpers build dep by extension-helpers
  * Don't run erfa generator script during build
  * Make test_wtbarr_print xfail
  * *** Don't build API docs for the moment ***
  * Exclude test_tab.py from files to handle with ply

 -- Ole Streicher <olebole@debian.org>  Fri, 12 Jun 2020 16:31:38 +0200

astropy (4.0.1+post1-4) unstable; urgency=medium

  * Fix stats doctest failures due to upstream changes. (Closes: #967965)

 -- Ole Streicher <olebole@debian.org>  Thu, 06 Aug 2020 14:30:26 +0200

astropy (4.0.1+post1-3) unstable; urgency=medium

  * Don't check return value of fitscheck. Closes: #963816

 -- Ole Streicher <olebole@debian.org>  Sat, 25 Jul 2020 15:32:32 +0200

astropy (4.0.1+post1-2) unstable; urgency=medium

  * Exclude asdf subdir from testing
  * Update WCSLIB compatibility to v7.3

 -- Ole Streicher <olebole@debian.org>  Sun, 14 Jun 2020 14:48:12 +0200

astropy (4.0.1+post1-1) unstable; urgency=medium

  * New upstream version 4.0.1+post1. Rediff patches
  * Use sphinx-automodapi provided by the system (Closes: #959581)

 -- Ole Streicher <olebole@debian.org>  Wed, 06 May 2020 18:10:50 +0200

astropy (4.0-4) unstable; urgency=medium

  * Update WCSLIB to version 7.1
  * Weaken leap second validity requirement for tests
  * Remove intersphinx mapping

 -- Ole Streicher <olebole@debian.org>  Thu, 20 Feb 2020 20:58:00 +0100

astropy (4.0-3) unstable; urgency=medium

  * Add breaks for astroquery, gwcs, specutils

 -- Ole Streicher <olebole@debian.org>  Tue, 14 Jan 2020 14:29:24 +0100

astropy (4.0-2) unstable; urgency=low

  * Make some votable tests xfail that fail under mips64el

 -- Ole Streicher <olebole@debian.org>  Fri, 20 Dec 2019 13:57:24 +0100

astropy (4.0-1) unstable; urgency=low

  * New upstream version 4.0. Switch back to unstable
  * Drop patches that were applied upstream
  * Don't turn deprecation warnings into errors

 -- Ole Streicher <olebole@debian.org>  Fri, 20 Dec 2019 10:21:40 +0100

astropy (4.0~rc2-2) experimental; urgency=medium

  * Invoke Pytest in CI test command
  * Ignore RuntimeWarning in MIPS
  * Disable failing test on amd64 and mips64el

 -- Ole Streicher <olebole@debian.org>  Wed, 11 Dec 2019 10:51:00 +0100

astropy (4.0~rc2-1) experimental; urgency=medium

  * New upstream version 4.0~rc2
  * Rediff patches
  * Changed ERANGE check in xstrtod to >= |HUGE_VAL|

 -- Ole Streicher <olebole@debian.org>  Mon, 09 Dec 2019 15:35:39 +0100

astropy (4.0~rc1-2) experimental; urgency=medium

  * Ignore Matplotlib deprecation warning in conftest.py
  * Avoid warning for invalid number for np.sign

 -- Ole Streicher <olebole@debian.org>  Fri, 06 Dec 2019 09:29:54 +0100

astropy (4.0~rc1-1) experimental; urgency=medium

  * New upstream version 4.0~rc1. Rediff patches
  * Depend on (experimental) extended erfa version
  * Ignore deprecation errors
  * Fix generation of units parser lexer

 -- Ole Streicher <olebole@debian.org>  Wed, 27 Nov 2019 08:33:29 +0100

astropy (3.2.3-3) unstable; urgency=medium

  * Disable failing tests

 -- Ole Streicher <olebole@debian.org>  Sat, 23 Nov 2019 13:31:28 +0100

astropy (3.2.3-2) unstable; urgency=medium

  * Ignore deprecation failures in test (Closes: #944101)
  * Add a Breaks for previous versions of astroplan (Closes: #933102)

 -- Ole Streicher <olebole@debian.org>  Fri, 22 Nov 2019 21:35:00 +0100

astropy (3.2.3-1) unstable; urgency=low

  * New upstream version 3.2.3. Rediff patches

 -- Ole Streicher <olebole@debian.org>  Fri, 01 Nov 2019 08:55:15 +0100

astropy (3.2.2-1) unstable; urgency=low

  * New upstream version 3.2.2. Rediff patches
  * Push Standards-Version to 4.4.1. No changes needed
  * Push compat to 12. Remove d/compat
  * Allow XFAIL tests to pass
  * Remove outdated X-Python3-Version field from d/control

 -- Ole Streicher <olebole@debian.org>  Sun, 13 Oct 2019 07:09:35 +0200

astropy (3.2.1-1) unstable; urgency=low

  * New regular upstream version 3.2.1. Switch back to unstable.
  * Rediff patches. Drop test_absolute_times (applied upstream)
  * Adjust min version for numpy to 1.13
  * Push Standards-Version to 4.4.0. No changes needed.
  * Update removal of external package copies

 -- Ole Streicher <olebole@debian.org>  Tue, 09 Jul 2019 15:26:15 +0200

astropy (3.2~rc1-2) experimental; urgency=medium

  * Fix test_absolute_times in BLS periodogram test suite on i386

 -- Ole Streicher <olebole@debian.org>  Wed, 15 May 2019 15:14:04 +0200

astropy (3.2~rc1-1) experimental; urgency=medium

  * New upstream version 3.2~rc1
  * Rediff patches
  * Add --offline option to setup.py
  * Require helpers >= 3.2

 -- Ole Streicher <olebole@debian.org>  Mon, 13 May 2019 16:19:23 +0200

astropy (3.1.2-2) unstable; urgency=medium

  * Fix problem with tables on big endian archs

 -- Ole Streicher <olebole@debian.org>  Wed, 27 Feb 2019 22:39:47 +0100

astropy (3.1.2-1) unstable; urgency=low

  * Add gitlab-ci.yml
  * New upstream bugfix version 3.1.2. Rediff patches
  * Push compat to 12

 -- Ole Streicher <olebole@debian.org>  Mon, 25 Feb 2019 20:20:50 +0100

astropy (3.1.1-1) unstable; urgency=medium

  * New upstream version 3.1.1. Rediff patches
  * Adjust build dependency versions

 -- Ole Streicher <olebole@debian.org>  Fri, 11 Jan 2019 09:47:01 +0100

astropy (3.1-3) unstable; urgency=medium

  * Spellfix: distutil*s*

 -- Ole Streicher <olebole@debian.org>  Sun, 30 Dec 2018 20:54:00 +0100

astropy (3.1-2) unstable; urgency=medium

  * Add python3-distutil to requirements

 -- Ole Streicher <olebole@debian.org>  Sun, 30 Dec 2018 00:11:39 +0100

astropy (3.1-1) unstable; urgency=medium

  * New upstream version 3.1. Rediff patches
  * Drop Disable-tests-that-fail-on-s390x.patch: Fixed in scipy
  * Drop Mark-all-known-test-failures-as-xfail.patch: Fixed in numpy
  * Push Standards-Version to 4.3.0. No changes needed
  * Ensure we support the new matmul ufunc in numpy 1.16. Closes: #917466
  * Add sphinx-astropy build dependency
  * Remove outdated paragraphs from d/copyright

 -- Ole Streicher <olebole@debian.org>  Wed, 26 Dec 2018 21:09:53 +0100

astropy (3.0.5-1) unstable; urgency=medium

  * Update reference to astropy paper 2
  * Set minimal version of numpy to 1.10
  * Updates for wcslib 6
  * New upstream version 3.0.5. Rediff patches

 -- Ole Streicher <olebole@debian.org>  Thu, 08 Nov 2018 20:52:24 +0100

astropy (3.0.4-3) unstable; urgency=medium

  * Unrestrict last, forgotten s390x test xfail

 -- Ole Streicher <olebole@debian.org>  Sat, 11 Aug 2018 21:23:14 +0200

astropy (3.0.4-2) unstable; urgency=medium

  * Mark failures on s390x as not strict: they succeed on Ubuntu

 -- Ole Streicher <olebole@debian.org>  Sat, 11 Aug 2018 10:31:38 +0200

astropy (3.0.4-1) unstable; urgency=low

  * New upstream version 3.0.4. Rediff patches
  * Unlimit max Python version
  * Push Standards-Version to 4.2.0. No changes needed.

 -- Ole Streicher <olebole@debian.org>  Sat, 04 Aug 2018 07:25:55 +0800

astropy (3.0.3-5) unstable; urgency=low

  * Disable tests that fail on s390x
  * Remove remote content from whatsnew page

 -- Ole Streicher <olebole@debian.org>  Tue, 31 Jul 2018 19:50:02 +0800

astropy (3.0.3-4) unstable; urgency=low

  * Temporarily limit Python version to <3.7
  * Push Standards-Version to 4.1.5. No changes needed.

 -- Ole Streicher <olebole@debian.org>  Tue, 31 Jul 2018 14:53:55 +0800

astropy (3.0.3-3) unstable; urgency=low

  * Disable more write modes in CI test

 -- Ole Streicher <olebole@debian.org>  Mon, 04 Jun 2018 10:26:51 +0200

astropy (3.0.3-2) unstable; urgency=low

  * Disable known CI test failure

 -- Ole Streicher <olebole@debian.org>  Sat, 02 Jun 2018 06:40:03 -0700

astropy (3.0.3-1) unstable; urgency=low

  * New upstream version 3.0.3. Rediff patches

 -- Ole Streicher <olebole@debian.org>  Fri, 01 Jun 2018 16:29:03 -0700

astropy (3.0.2-2) unstable; urgency=low

  * Explicitly generate PLY files
  * Disable float128 test due to numpy representation bug

 -- Ole Streicher <olebole@debian.org>  Thu, 17 May 2018 13:20:41 +0200

astropy (3.0.2-1) unstable; urgency=medium

  * Put use_system_libs into setup.cfg. Closes: #898475
  * Cleanup all ply generated files
  * New upstream version 3.0.2. Rediff patches
  * Push Standards-Version to 4.1.4. No changes needed.
  * Remove outdated X-Python3-Version

 -- Ole Streicher <olebole@debian.org>  Tue, 15 May 2018 11:08:40 +0200

astropy (3.0-3) unstable; urgency=medium

  [ Stefano Rivera ]
  * Use dh_python3-ply to generate ply dependency

 -- Ole Streicher <olebole@debian.org>  Sun, 25 Feb 2018 13:12:36 +0100

astropy (3.0-2) unstable; urgency=medium

  * Mark all known test failures as xfail
  * Add astropy examples
  * Push debhelper compat to 11
  * Remove unused lintian-overrides

 -- Ole Streicher <olebole@debian.org>  Fri, 16 Feb 2018 11:08:09 +0100

astropy (3.0-1) unstable; urgency=low

  * Create a new source package for the Python 3 version
  * New upstream version 3.0. Rediff patches
  * Update VCS fields to use salsa.d.o
  * Don't remove generic_lextab.py and generic_parsetab.py
  * Add pytest-astropy build dependencies

 -- Ole Streicher <olebole@debian.org>  Tue, 13 Feb 2018 14:36:43 +0100

python-astropy (2.0.3-1) unstable; urgency=low

  * New upstream version 2.0.3
  * Rediff patches
  * Remove http proxy from d/rules to allow localhost connections
  * Use the packaged MathJax

 -- Ole Streicher <olebole@debian.org>  Tue, 19 Dec 2017 11:35:47 +0100

python-astropy (2.0.2-2) unstable; urgency=medium

  * Push Standards-Version to 4.1.2. Change remaining URLs to use https
  * Otherwise unchanged upload for python3.6 transition. Closes: #883403

 -- Ole Streicher <olebole@debian.org>  Tue, 05 Dec 2017 11:16:34 +0100

python-astropy (2.0.2-1) unstable; urgency=medium

  * New upstream version 2.0.2
  * Rediff patches
  * Push Standards-Version to 4.1.0. No changes needed.
  * Shorten message to compare for recent h5py.
  * Rebuiold against current Python versions. Closes: #875317

 -- Ole Streicher <olebole@debian.org>  Mon, 11 Sep 2017 20:39:28 +0200

python-astropy (2.0.1-2) unstable; urgency=medium

  * Changing parametrized tests pytest 3.2.0 compatible
  * Change astropy home URL to https
  * Push standards-version to 4.0.1. No changes needed.
  * Adjust several dependency versions
  * Reimplement reportinfo() in doctestplus extension (Closes: #871995)

 -- Ole Streicher <olebole@debian.org>  Thu, 17 Aug 2017 09:53:02 +0200

python-astropy (2.0.1-1) unstable; urgency=low

  * Change upstream GPG key to Brigitta Sipocz
  * New upstream version 2.0.1

 -- Ole Streicher <olebole@debian.org>  Mon, 31 Jul 2017 09:36:34 +0200

python-astropy (2.0-2) unstable; urgency=low

  * Re-disable test_socketblocker (see upstream #4193).

 -- Ole Streicher <olebole@debian.org>  Thu, 13 Jul 2017 09:19:57 +0200

python-astropy (2.0-1) unstable; urgency=low

  * New upstream version 2.0. Switch back to unstable
  * Rediff patches
  * Re-enable sphinx build
  * Update d/changelog. Change copyright of debian files to BSD-3-Clause

 -- Ole Streicher <olebole@debian.org>  Mon, 10 Jul 2017 10:21:30 +0200

python-astropy (2.0~rc1-1) experimental; urgency=low

  * New upstream release candidate 2.0~rc1
  * Rediff patches
  * Temporarily re-enable almost all test to see if they are fixed
  * Temporarily disable sphinx build

 -- Ole Streicher <olebole@debian.org>  Wed, 28 Jun 2017 08:38:02 +0200

python-astropy (1.3.3-1) unstable; urgency=low

  [ Leo Singer ]
  * Enable Matplotlib tests
  * Add build dependency on h5py to enable related unit tests
  * Qualify dependency on pytest >= 2.7.0 because the unit tests
    make use of parameterize ids as a callable, a feature that was
    added in that version. See also:
    https://docs.pytest.org/en/latest/changelog.html#id156

  [ Ole Streicher ]
  * New upstream version 1.3.3
  * Rediff patches
  * Push Standards-Version to 4.0.0. No changes needed

 -- Ole Streicher <olebole@debian.org>  Tue, 20 Jun 2017 20:58:21 +0200

python-astropy (1.3-8) unstable; urgency=medium

  * Switch to unstable. Closes: #852550
  * Revert unrelated "Improved detection of ascii fast_reader in non-fast
    parsers"

 -- Ole Streicher <olebole@debian.org>  Wed, 25 Jan 2017 16:17:26 +0100

python-astropy (1.3-8~exp2) experimental; urgency=medium

  * Fix pytest section, finally re-enabling doctests

 -- Ole Streicher <olebole@debian.org>  Thu, 19 Jan 2017 17:27:30 +0100

python-astropy (1.3-8~exp1) experimental; urgency=medium

  * Switch to experimental for some tests
  * Try to fix doctest failures
  * Improved detection of ascii fast_reader in non-fast parsers

 -- Ole Streicher <olebole@debian.org>  Thu, 19 Jan 2017 09:57:22 +0100

python-astropy (1.3-7) unstable; urgency=medium

  * Allow stderr in all tests

 -- Ole Streicher <olebole@debian.org>  Sun, 15 Jan 2017 14:35:17 +0100

python-astropy (1.3-6) unstable; urgency=medium

  * Override missing-build-dependency-for-dh_-command
  * Add python-astropy-affiliated to suggestions
  * Add pytest to package dependencies
  * Fix default value for remote_data option. Closes: #849501
  * Remove wcslib 4.24 compatibility property. Closes: #844525

 -- Ole Streicher <olebole@debian.org>  Sat, 14 Jan 2017 11:28:01 +0100

python-astropy (1.3-5) unstable; urgency=medium

  * Manually add dependencies for external packages

 -- Ole Streicher <olebole@debian.org>  Thu, 12 Jan 2017 22:51:46 +0100

python-astropy (1.3-4) unstable; urgency=medium

  * Mark doc package as Multi-Arch: foreign as suggested by Multiarch hinter
  * Remove wcsaxes suggestions since this is now part of astropy
  * Use external modules instead of convenience copies. Closes: #849502
  * Temporarily disable doctests (not working with pytest 3.0.5)
  * Remove explicite dh_strip_nondeterminism

 -- Ole Streicher <olebole@debian.org>  Thu, 12 Jan 2017 12:17:23 +0100

python-astropy (1.3-3) unstable; urgency=medium

  * Ensure NUMPY_LT_1_12 works for beta prerelease. Closes: #849271

 -- Ole Streicher <olebole@debian.org>  Thu, 29 Dec 2016 09:52:44 +0100

python-astropy (1.3-2) unstable; urgency=low

  * Disable TestDisplayWorldCoordinate.test_cube_coords to fix FTBFS on MIPS

 -- Ole Streicher <olebole@debian.org>  Fri, 23 Dec 2016 17:58:24 +0100

python-astropy (1.3-1) unstable; urgency=low

  * New upstream version 1.3
  * Switch back to unstable
  * Rediff patches

 -- Ole Streicher <olebole@debian.org>  Fri, 23 Dec 2016 15:13:46 +0100

python-astropy (1.3~rc1-1) experimental; urgency=low

  * Add python3-pkg-resources to astropy-tools dependencies. Closes: #839746
  * Disable failing VO SSL test to avoid FTBFS with recent Python release.
    Closes: #844984
  * New upstream version 1.3~rc1
  * Rediff patches
  * Re-enable WCS.all_world2pix test (should be fixed now)

 -- Ole Streicher <olebole@debian.org>  Tue, 13 Dec 2016 09:44:29 +0100

python-astropy (1.2.1-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher <olebole@debian.org>  Thu, 23 Jun 2016 09:48:06 +0200

python-astropy (1.2-1) unstable; urgency=low

  * New upstream version. Switch back to unstable

 -- Ole Streicher <olebole@debian.org>  Mon, 20 Jun 2016 15:10:14 +0200

python-astropy (1.2~rc1-3) experimental; urgency=low

  * Re-enable unfixed yet tests

 -- Ole Streicher <olebole@debian.org>  Thu, 16 Jun 2016 14:06:19 +0200

python-astropy (1.2~rc1-2) experimental; urgency=low

  * Temporarily disable all xfail marks

 -- Ole Streicher <olebole@debian.org>  Tue, 14 Jun 2016 21:32:33 +0200

python-astropy (1.2~rc1-1) experimental; urgency=low

  * New upstream RC. Switch to experimental
  * Install Python 3 versions of the scripts
  * Push Standards-Version to 3.9.8. No changes needed

 -- Ole Streicher <olebole@debian.org>  Sun, 12 Jun 2016 10:32:16 +0200

python-astropy (1.1.2-1) unstable; urgency=low

  * Add ASCL-Id
  * New upstream version
  * Fix cfitsio related tests. Closes: #816715

 -- Ole Streicher <olebole@debian.org>  Fri, 11 Mar 2016 10:54:46 +0100

python-astropy (1.1.1-3) unstable; urgency=medium

  * Fix for newer pytest. Closes: #812648
  * Fix for wcslib 5.13
  * Fix for known test issue with new numpy
  * Push standards-version to 3.9.7. No changes needed.
  * Adjust VCS entries in d/control

 -- Ole Streicher <olebole@debian.org>  Sun, 14 Feb 2016 15:09:01 +0100

python-astropy (1.1.1-2) unstable; urgency=low

  * Fix dependency of python-astropy-utils on python-astropy
  * Finally fix test failure
  * Switch back to unstable since bugfix is approved upstream

 -- Ole Streicher <olebole@debian.org>  Thu, 14 Jan 2016 23:06:52 +0100

python-astropy (1.1.1-1~exp1) experimental; urgency=low

  * New upstream version
  * Depend python-astropy-utils on python-astropy of the same version.
    Closes: #807834
  * Revert astropy.wcs to 1.1 to workaround test failure
  * Switch to experimental since WCS seems to be buggy

 -- Ole Streicher <olebole@debian.org>  Thu, 14 Jan 2016 11:14:05 +0100

python-astropy (1.1-1) unstable; urgency=low

  * New upstream version
  * Switch back to unstable

 -- Ole Streicher <olebole@debian.org>  Sat, 12 Dec 2015 10:02:22 +0100

python-astropy (1.1~rc2-1) experimental; urgency=low

  * New upstream RC version

 -- Ole Streicher <olebole@debian.org>  Tue, 08 Dec 2015 09:29:29 +0100

python-astropy (1.1~rc1-1) experimental; urgency=low

  * New upstream RC version

 -- Ole Streicher <olebole@debian.org>  Tue, 24 Nov 2015 21:09:40 +0100

python-astropy (1.1~b1-1) experimental; urgency=low

  * New upstream beta version
  * [Martin Pitt] Ignore stderr for python3 test to avoid failing on
    the ResourceWarning stderr message. Closes: #803068

 -- Ole Streicher <olebole@debian.org>  Fri, 16 Oct 2015 08:58:30 +0200

python-astropy (1.0.5-2) unstable; urgency=low

  * Fix FTBS on i386

 -- Ole Streicher <olebole@debian.org>  Thu, 08 Oct 2015 15:44:51 +0200

python-astropy (1.0.5-1) unstable; urgency=low

  * New upstream version, providing Python-3.5 compatibility. Closes: #800727
  * Limit wcslib-dev version to pre-5 releases

 -- Ole Streicher <olebole@debian.org>  Tue, 06 Oct 2015 13:26:14 +0200

python-astropy (1.0.4-1) unstable; urgency=low

  * New upstream version
  * Re-enable dh_strip_nondeterminism override. See #791574 for details.

 -- Ole Streicher <olebole@debian.org>  Thu, 27 Aug 2015 10:32:44 +0200

python-astropy (1.0.3-3) unstable; urgency=low

  * Extend Suggests, and build/test-depend on scipy for more extended tests
  * Fix conflicts/replaces of astropy-utils with pyfits-utils. Closes: #790530
  * Temporarily remove dh_strip_nondeterminism
  * Override image-file-in-usr-lib lintian

 -- Ole Streicher <olebole@debian.org>  Thu, 16 Jul 2015 10:46:32 +0200

python-astropy (1.0.3-2) unstable; urgency=low

  * Fix FTBS with hurd-i386

 -- Ole Streicher <olebole@debian.org>  Wed, 24 Jun 2015 10:38:18 +0200

python-astropy (1.0.3-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher <olebole@debian.org>  Sun, 07 Jun 2015 17:55:56 +0200

python-astropy (1.0.2-1) unstable; urgency=low

  * New upstream version.
  * Create upstream/metadata with bibliographic information
  * Create debci control file
  * New binary package astropy-utils. Conflicts with pyfits-utils.
  * Package png files as well. Closes: #783573
  * switch back to unstable

 -- Ole Streicher <olebole@debian.org>  Thu, 16 Apr 2015 22:15:02 +0200

python-astropy (1.0-1~exp) experimental; urgency=low

  * New upstream version.

 -- Ole Streicher <olebole@debian.org>  Thu, 19 Feb 2015 09:09:44 +0100

python-astropy (1.0~rc2-1) experimental; urgency=medium

  * New upstream release candidate

 -- Ole Streicher <olebole@debian.org>  Thu, 12 Feb 2015 09:26:56 +0100

python-astropy (1.0~rc1-3) experimental; urgency=low

  * Fix last FTBS on Hurd

 -- Ole Streicher <olebole@debian.org>  Thu, 05 Feb 2015 21:41:57 +0100

python-astropy (1.0~rc1-2) experimental; urgency=low

  * Fix FTBS on several platforms
  * Disable failing tests (temporartily)

 -- Ole Streicher <olebole@debian.org>  Sun, 01 Feb 2015 11:13:52 +0100

python-astropy (1.0~rc1-1) experimental; urgency=low

  * New upstream release candidate

 -- Ole Streicher <olebole@debian.org>  Wed, 28 Jan 2015 09:17:42 +0100

python-astropy (0.4.2-2) unstable; urgency=medium

  * Don't set defalt SSL protocol in vo/samp/client.py. Closes: #775780

 -- Ole Streicher <olebole@debian.org>  Mon, 19 Jan 2015 21:07:18 +0100

python-astropy (0.4.2-1) unstable; urgency=low

  * New upstream release.
  * Build-depend on libcfitsio-dev instead of libcfitsio3-dev. Closes: #761716
  * Upgrade to Standards-Version 3.9.6 (no changes needed)

 -- Ole Streicher <olebole@debian.org>  Wed, 24 Sep 2014 14:49:35 +0200

python-astropy (0.4.1+dfsg2-1) unstable; urgency=low

  * Remove astropy-helper and use external dependency. Closes: #761055
  * Support numpy 1.9. Closes: #761392
  * Update uploaders email address

 -- Ole Streicher <olebole@debian.org>  Sun, 14 Sep 2014 13:50:29 +0200

python-astropy (0.4.1+dfsg-1) unstable; urgency=low

  * New upstream version
  * Exclude precompiled files from source tarball

 -- Ole Streicher <debian@liska.ath.cx>  Sun, 10 Aug 2014 10:22:07 +0200

python-astropy (0.4-4) unstable; urgency=low

  * build-depend on wcslib >= 4.23. Closes: #755485

 -- Ole Streicher <debian@liska.ath.cx>  Tue, 22 Jul 2014 17:22:16 +0200

python-astropy (0.4-3) unstable; urgency=low

  * Revert build-depends-indep since it does not work yet.

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 18 Jul 2014 16:50:55 +0200

python-astropy (0.4-2) unstable; urgency=low

  * Fix locale on build

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 18 Jul 2014 09:16:16 +0200

python-astropy (0.4-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 16 Jul 2014 20:21:39 +0200

python-astropy (0.4~rc2-3) experimental; urgency=low

  * Convert from python-support to dh_python

 -- Ole Streicher <debian@liska.ath.cx>  Mon, 14 Jul 2014 09:46:47 +0200

python-astropy (0.4~rc2-2) experimental; urgency=low

  * Fix FTBS on powerpc, s390

 -- Ole Streicher <debian@liska.ath.cx>  Sun, 13 Jul 2014 18:56:28 +0200

python-astropy (0.4~rc2-1) experimental; urgency=low

  * New upstream prerelease

 -- Ole Streicher <debian@liska.ath.cx>  Sat, 12 Jul 2014 18:51:26 +0200

python-astropy (0.4~rc1-2) experimental; urgency=low

  * Fix FTBS on powerpc and s390x

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 09 Jul 2014 13:16:06 +0200

python-astropy (0.4~rc1-1) experimental; urgency=low

  * New upstream prerelease
  * Adjust watch file for prerelease

 -- Ole Streicher <debian@liska.ath.cx>  Mon, 07 Jul 2014 16:07:05 +0200

python-astropy (0.3.2-3) unstable; urgency=low

  * Fix checksum calculation and test on 32-bit

 -- Ole Streicher <debian@liska.ath.cx>  Sat, 17 May 2014 17:05:58 +0200

python-astropy (0.3.2-2) unstable; urgency=low

  * Mark known failures as xfail.
  * Change maintainer and VCS location to debian-astro

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 14 May 2014 14:47:35 +0200

python-astropy (0.3.2-1) unstable; urgency=low

  * New upstream version. Closes: #743554
  * Don't repack since all sources are included now

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 14 May 2014 09:21:18 +0200

python-astropy (0.3.1+dfsg-1) unstable; urgency=low

  * New upstream version

 -- Ole Streicher <debian@liska.ath.cx>  Thu, 06 Mar 2014 11:40:55 +0100

python-astropy (0.3+dfsg-3) unstable; urgency=low

  * Re-integrate 0.3-6 fixes which were left out by another mistake :-)

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 24 Jan 2014 11:31:26 +0100

python-astropy (0.3+dfsg-2) unstable; urgency=low

  * Re-integrate 0.3-5 fixes which were left out by mistake

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 24 Jan 2014 11:11:46 +0100

python-astropy (0.3+dfsg-1) unstable; urgency=low

  * Remove sourceless files jqery*.js. Closes: #735770

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 24 Jan 2014 09:43:27 +0100

python-astropy (0.3-6) unstable; urgency=low

  * Fix another FTBS causes on python-3.4.

 -- Ole Streicher <debian@liska.ath.cx>  Thu, 16 Jan 2014 16:27:55 +0100

python-astropy (0.3-5) unstable; urgency=low

  * Include upstream fixes to build on python-3.4. Closes: #734293
  * Upgrade to Standards-Version 3.9.5 (no changes needed)

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 15 Jan 2014 09:57:05 +0100

python-astropy (0.3-4) unstable; urgency=low

  * Mark known s390 failures as xfail.

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 20 Dec 2013 10:43:16 +0100

python-astropy (0.3-3) unstable; urgency=low

  * Fix vo_test.py for big endian.

 -- Ole Streicher <debian@liska.ath.cx>  Tue, 10 Dec 2013 11:23:38 +0100

python-astropy (0.3-2) unstable; urgency=low

  * Fix doctest and mark other known test failures on big endian until
    they get fixed upstream.

 -- Ole Streicher <debian@liska.ath.cx>  Mon, 09 Dec 2013 14:23:04 +0100

python-astropy (0.3-1) unstable; urgency=low

  * New upstream version.
  * Remove legacy packages that are no longer supported upstream.

 -- Ole Streicher <debian@liska.ath.cx>  Sat, 30 Nov 2013 12:56:34 +0100

python-astropy (0.2.5-1) unstable; urgency=low

  * New upstream version.

 -- Ole Streicher <debian@liska.ath.cx>  Sun, 27 Oct 2013 18:29:01 +0100

python-astropy (0.2.4-3) unstable; urgency=low

  * Fix "Conflicts" of python3-astropy-legacy. Closes: #719770

 -- Ole Streicher <debian@liska.ath.cx>  Thu, 15 Aug 2013 14:33:37 +0200

python-astropy (0.2.4-2) unstable; urgency=low

  * Enable python3 packages

 -- Ole Streicher <debian@liska.ath.cx>  Mon, 05 Aug 2013 21:04:23 +0200

python-astropy (0.2.4-1) unstable; urgency=low

  * New upstream version.

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 26 Jul 2013 17:41:26 +0200

python-astropy (0.2.3-2~1) experimental; urgency=low

  * Fix FTBS on MIPS and MIPSEL

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 21 Jun 2013 16:31:15 +0200

python-astropy (0.2.3-1) unstable; urgency=low

  * New upstream version; incorporates all previous patches

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 07 Jun 2013 14:40:05 +0200

python-astropy (0.2.1-1) unstable; urgency=low

  * Fix FTBS (unit test failure) on HURD
  * Change distribution to unstable

 -- Ole Streicher <debian@liska.ath.cx>  Tue, 30 Apr 2013 10:36:01 +0200

python-astropy (0.2.1-1~exp6) experimental; urgency=low

  * Fix FTBS (unit test failure) on MIPS

 -- Ole Streicher <debian@liska.ath.cx>  Fri, 26 Apr 2013 09:57:59 +0200

python-astropy (0.2.1-1~exp5) experimental; urgency=low

  * Fix FTBS (unit test failure) on bigendian machines

 -- Ole Streicher <debian@liska.ath.cx>  Mon, 22 Apr 2013 19:37:00 +0200

python-astropy (0.2.1-1~exp4) experimental; urgency=low

  * Fix FTBS (unit test failure) on Hurd

 -- Ole Streicher <debian@liska.ath.cx>  Sun, 14 Apr 2013 18:39:00 +0200

python-astropy (0.2.1-1~exp3) experimental; urgency=low

  * Suggest optional packages

 -- Ole Streicher <debian@liska.ath.cx>  Sun, 14 Apr 2013 12:17:00 +0200

python-astropy (0.2.1-1~exp2) experimental; urgency=low

  * increase test verbosity to catch bigendian FTBS

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 10 Apr 2013 16:21:00 +0200

python-astropy (0.2.1-1~exp1) experimental; urgency=low

  * New upstream release
  * Infrastructure to build python3 packages (but py3 still disabled)
  * Fix FTBS: set a writeable HOME + MPLCONFIGDIR

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 10 Apr 2013 09:10:00 +0200

python-astropy (0.2~b2-1) experimental; urgency=low

  * Initial release. (Closes: #678168)

 -- Ole Streicher <debian@liska.ath.cx>  Wed, 30 Jan 2013 10:00:00 +0100