File: changelog

package info (click to toggle)
numpy 1%3A2.2.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 83,420 kB
  • sloc: python: 248,499; asm: 232,365; ansic: 216,874; cpp: 135,657; f90: 1,540; sh: 938; fortran: 558; makefile: 409; sed: 139; xml: 109; java: 92; perl: 79; cs: 54; javascript: 53; objc: 29; lex: 13; yacc: 9
file content (2277 lines) | stat: -rw-r--r-- 76,423 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
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
numpy (1:2.2.4+ds-1) unstable; urgency=medium

  * New upstream version 2.2.4+ds
  * Refresh patches (no functional changes)

 -- Timo Röhling <roehling@debian.org>  Tue, 01 Apr 2025 21:45:23 +0200

numpy (1:2.2.3+ds-5) unstable; urgency=medium

  * Fix reproducibility issues with object files again

 -- Timo Röhling <roehling@debian.org>  Sun, 09 Mar 2025 21:14:24 +0100

numpy (1:2.2.3+ds-4) unstable; urgency=medium

  * Add --force option to dh_numpy3 and improve detection
  * Fix FTBFS on alpha and hurd-*

 -- Timo Röhling <roehling@debian.org>  Sat, 01 Mar 2025 22:25:17 +0100

numpy (1:2.2.3+ds-3) unstable; urgency=medium

  * Make dh_numpy3 smarter about adding ABI dependencies
  * Bump Standards-Version to 4.7.2

 -- Timo Röhling <roehling@debian.org>  Fri, 28 Feb 2025 14:47:44 +0100

numpy (1:2.2.3+ds-2) unstable; urgency=medium

  * Bump Standards-Version to 4.7.1
  * Properly execute dir_to_symlink transition (Closes: #1098365)

 -- Timo Röhling <roehling@debian.org>  Thu, 20 Feb 2025 11:56:23 +0100

numpy (1:2.2.3+ds-1) unstable; urgency=medium

  * New upstream version 2.2.3+ds (Closes: #1095468)
  * Skip huge_vectordot test on all 32 bit architectures (Closes: #1097126)

 -- Timo Röhling <roehling@debian.org>  Tue, 18 Feb 2025 09:52:55 +0100

numpy (1:2.2.2+ds-2) unstable; urgency=medium

  * Upload to unstable.

 -- Timo Röhling <roehling@debian.org>  Sun, 26 Jan 2025 21:02:29 +0100

numpy (1:2.2.2+ds-1) experimental; urgency=medium

  * New upstream version 2.2.2+ds

 -- Timo Röhling <roehling@debian.org>  Mon, 20 Jan 2025 18:07:13 +0100

numpy (1:2.2.1+ds-2) experimental; urgency=medium

  [ Alexandre Detiste ]
  * Fix syntax error in Maintainer: field that confuses UDD & the Tracker

 -- Timo Röhling <roehling@debian.org>  Thu, 16 Jan 2025 12:02:00 +0100

numpy (1:2.2.1+ds-1) experimental; urgency=medium

  * New upstream version 2.2.1+ds
  * Wrap and sort Debian package files

 -- Timo Röhling <roehling@debian.org>  Thu, 16 Jan 2025 11:28:28 +0100

numpy (1:2.2.0+ds-1) experimental; urgency=medium

  * New upstream version 2.2.0+ds
  * Update patches
    - Drop 0009-Use-correct-Python-interpreter-in-tests.patch
      (merged upstream)
  * Wrap and sort Debian package files
  * Drop dependency on python3-pkg-resources (Closes: #1083512)

 -- Timo Röhling <roehling@debian.org>  Thu, 12 Dec 2024 23:47:03 +0100

numpy (1:2.1.3+ds-2) experimental; urgency=medium

  * Skip failing autopkgtest after scrubbing __config__.py

 -- Timo Röhling <roehling@debian.org>  Sun, 08 Dec 2024 00:05:44 +0100

numpy (1:2.1.3+ds-1) experimental; urgency=medium

  * New upstream version 2.1.3+ds
  * Move dh_numpy3 to python3-numpy-dev
  * Fix __config__.py divergence between different Python versions
  * Finalize package layout for better cross-build support
    (Closes: #1076236)

 -- Timo Röhling <roehling@debian.org>  Sat, 23 Nov 2024 00:37:09 +0100

numpy (1:2.1.2+ds-1) experimental; urgency=medium

  [ Dima Kogan ]
  * swig numpy docs contain the correct include path

  [ Timo Röhling ]
  * Skip test that fills up Salsa autopkgtest filesystem
  * New upstream version 2.1.2+ds

 -- Timo Röhling <roehling@debian.org>  Tue, 08 Oct 2024 18:55:28 +0200

numpy (1:2.1.1+ds-3) experimental; urgency=medium

  * Make __config__.py reproducible
  * Use correct Python interpreter in tests (Closes: #1082094)

 -- Timo Röhling <roehling@debian.org>  Wed, 25 Sep 2024 23:45:59 +0200

numpy (1:2.1.1+ds-2) experimental; urgency=medium

  * Use sysconfig module and _PYTHON_SYSCONFIGDATA_NAME for cross build support
  * Skip a few more problematic tests

 -- Timo Röhling <roehling@debian.org>  Mon, 16 Sep 2024 23:41:43 +0200

numpy (1:2.1.1+ds-1) experimental; urgency=medium

  * New upstream version 2.1.1+ds
  * Add missing test excludes for arch-specific fails
  * Split python3-numpy-dev off python3-numpy for better cross-build support
  * Improve package description
  * Update d/copyright

 -- Timo Röhling <roehling@debian.org>  Fri, 06 Sep 2024 14:18:38 +0200

numpy (1:2.1.0+ds-2) experimental; urgency=medium

  * Ignore arch-specific test failures

 -- Timo Röhling <roehling@debian.org>  Mon, 02 Sep 2024 00:08:35 +0200

numpy (1:2.1.0+ds-1) experimental; urgency=medium

  * New upstream version 2.1.0+ds
  * Update copyright information
  * Update patches
    - Drop Do-not-fail-if-we-cannot-import-mingw32.patch (obsolete)
    - Drop Use-proper-lapack-dependency-for-__config__.py.patch (merged)
    - Drop Do-not-fail-the-build-on-Sphinx-warnings.patch (obsolete)
    - Drop Prevent-random-object-file-names-in-debuginfo.patch (merged)
    - Drop Ignore-distutils-for-Python-3.12-and-later.patch (obsolete)
    - Drop Remove-hack-to-override-_add_newdocs_scalars.patch (obsolete)
  * Update NumPy ABI/API versioning
  * Update prefix path in debian/numpy.pc
  * Update test suite invocation
  * Prepare multi-arch support for numpy.pc
  * Avoid circular NumPy build dependencies
  * New required Sphinx extension copybutton
  * Relax api-min-version requirement in dh_numpy3

 -- Timo Röhling <roehling@debian.org>  Fri, 30 Aug 2024 18:11:32 +0200

numpy (1:1.26.4+ds-13) unstable; urgency=medium

  * Team upload.
  * Remove dependency on python3-pkg-resources (Closes: #1083512)

 -- Alexandre Detiste <tchet@debian.org>  Mon, 13 Jan 2025 20:42:00 +0100

numpy (1:1.26.4+ds-12) unstable; urgency=medium

  * Team upload.
  * Patch test_iter_refcount to support Python 3.13.
  * Skip test_deprecate_* to support Python 3.13.

 -- Stefano Rivera <stefanor@debian.org>  Thu, 14 Nov 2024 14:43:59 +0100

numpy (1:1.26.4+ds-11) unstable; urgency=medium

  * Remove hack to override _add_newdocs_scalars (Closes: #1076899)

 -- Timo Röhling <roehling@debian.org>  Wed, 31 Jul 2024 00:19:32 +0200

numpy (1:1.26.4+ds-10) unstable; urgency=medium

  * Defang upstream gitignore
  * Stop building distutils documentation with Python 3.12 (Closes: #1071255)

 -- Timo Röhling <roehling@debian.org>  Fri, 17 May 2024 18:38:57 +0200

numpy (1:1.26.4+ds-9) unstable; urgency=medium

  * Upload to unstable (Closes: #1070445)
  * More test filtering
  * Fix reproducibility issue with lapack dependency
  * Reorganize patches (no functional changes)
  * Prevent random object file names in debuginfo
  * Skip FPClass tests on mips64el

 -- Timo Röhling <roehling@debian.org>  Thu, 16 May 2024 14:38:07 +0200

numpy (1:1.26.4+ds-9~exp1) experimental; urgency=medium

  [ Michael R. Crusoe ]
  * Bring back the -doc package.

  [ Timo Röhling ]
  * Fix the SWIG documentation patch to reflect recent changes
  * Improve logic to avoid unneeded compilations

 -- Timo Röhling <roehling@debian.org>  Wed, 15 May 2024 21:24:07 +0200

numpy (1:1.26.4+ds-8) unstable; urgency=medium

  * Another round of flaky tests

 -- Timo Röhling <roehling@debian.org>  Thu, 25 Apr 2024 21:52:44 +0200

numpy (1:1.26.4+ds-7) unstable; urgency=medium

  * Make mips64el build more robust
  * Remove outdated READMEs
  * Move packaging helper scripts to dedicated subdir
  * Use deterministic MesonPy build directory
  * Bump Standards-Version to 4.7.0
  * Skip TestErrState::test_invalid on armel (Closes: #1069551)

 -- Timo Röhling <roehling@debian.org>  Thu, 25 Apr 2024 16:10:26 +0200

numpy (1:1.26.4+ds-6) unstable; urgency=medium

  * Make header include dir findable by pkgconf (Closes: #1067398)
  * Fix architecture-specifix test exclusions in autopkgtest
  * Fix entry point edits
  * Do not install duplicate files in /usr/lib/python3.X (Closes: #1063465)

 -- Timo Röhling <roehling@debian.org>  Thu, 21 Mar 2024 23:14:35 +0100

numpy (1:1.26.4+ds-5) unstable; urgency=medium

  * Fix more FTBFS due to architecture idiosynchrasies

 -- Timo Röhling <roehling@debian.org>  Tue, 19 Mar 2024 21:51:43 +0100

numpy (1:1.26.4+ds-4) unstable; urgency=medium

  * Also skip feature test in armhf/armel

 -- Timo Röhling <roehling@debian.org>  Tue, 19 Mar 2024 12:51:15 +0100

numpy (1:1.26.4+ds-3) unstable; urgency=medium

  * Skip tests with floating point errors on armhf/armel

 -- Timo Röhling <roehling@debian.org>  Tue, 19 Mar 2024 11:38:11 +0100

numpy (1:1.26.4+ds-2) unstable; urgency=medium

  * Upload to unstable.
  * Avoid hard dependency on individual Python versions.
    Thanks to Simon McVittie (Closes: #945824)
  * Stop symlinking NumPy headers in Python default include path
    (Closes: #998084)
  * Make package cross-buildable
  * Skip f2py tests for architecture-specific failures
  * Adopt upstream spelling of NumPy
  * Tests no longer consume excessive memory with Python 3.12
    (Closes: #1058456)

 -- Timo Röhling <roehling@debian.org>  Mon, 18 Mar 2024 11:58:47 +0100

numpy (1:1.26.4+ds-1) experimental; urgency=medium

  * Update debian/watch
  * New upstream version 1.26.4+ds
  * Update debian/copyright
  * Update patches
    - Drop 0004-Restore-missing-asstr-import.patch (merged upstream)
    - Drop 0005-Fix-pytest-8-deprecation-error.patch (merged upstream)
  * MesonPy is devendored now

 -- Timo Röhling <roehling@debian.org>  Sat, 16 Mar 2024 14:49:51 +0100

numpy (1:1.26.3-3) experimental; urgency=medium

  * Add ckk and myself as uploaders (Closes: #1065329)
  * Migrate to meson build system
  * Update debian/copyright
  * Update patches
    - Drop debian_skip_tests.patch (no longer needed)
    - Drop setup-py-accept-config.patch (no longer needed)
  * Migrate to pybuild autopkgtest

 -- Timo Röhling <roehling@debian.org>  Sat, 16 Mar 2024 12:38:38 +0100

numpy (1:1.26.3-2) experimental; urgency=medium

  * orphan

 -- Sandro Tosi <morph@debian.org>  Sat, 02 Mar 2024 15:45:34 -0500

numpy (1:1.26.3-1) experimental; urgency=medium

  [ Stefano Rivera ]
  * New upstream release (Closes: #1052320)
    - Adds Python 3.12 support.
    - Adds cython 3 support. (Closes: #1056825)
  * Refresh patches.
  * Drop patches, superseded upstream: python3-soabi.patch, python3.11.patch.
  * Build-Depend on tzdata-legacy. The testsuite uses US/Eastern.
  * Manually generate the f2pyX.Y scripts that upstream is no longer building.
  * Clean version.py, generated on every build.
  * Build-Depend on meson, and include it in many autopkgtests. f2py now uses
    it on Python 3.12.
  * Patch: Restore dropped import in f2py test suite.
  * debian/versions
    - bump API version to 17, min version 1.25.0

  [ Sandro Tosi ]
  * New upstream release
  * debian/source/options
    - ignore bat scripts diffs
  * debian/copyright
    - convert to DEP-5 format
    - exclude .gitattributes from upstream tarball, messing up with .bat files
  * debian/control
    - drop dvisvgm from b-d, no longer needed; Closes: #1055435
  * drop patches used to fix doc build, since we dont ship doc anymore
  * debian/source/include-binaries
    - drop, no longer needed

 -- Sandro Tosi <morph@debian.org>  Mon, 22 Jan 2024 01:48:13 -0500

numpy (1:1.24.2-3) unstable; urgency=medium

  * orphan

 -- Sandro Tosi <morph@debian.org>  Sat, 02 Mar 2024 15:43:52 -0500

numpy (1:1.24.2-2) unstable; urgency=medium

  * Team upload.
  * Drop SETUPTOOLS_USE_DISTUTILS=stdlib workaround, no longer needed and not
    applicable to Python 3.12.
  * Clean correctly.
  * Depend on python3-setuptools in autopkgtests that require distutils, for
    Python 3.12 compatibility.
  * Use --install-layout deb in capi autopkgtest, to use a consistent layout
    with Python 3.11 and 12.

 -- Stefano Rivera <stefanor@debian.org>  Mon, 04 Dec 2023 21:10:36 -0400

numpy (1:1.24.2-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Wed, 08 Feb 2023 22:54:23 -0500

numpy (1:1.24.1-2) unstable; urgency=medium

  * upload to unstable; Closes: #1027581

 -- Sandro Tosi <morph@debian.org>  Sun, 08 Jan 2023 16:38:17 -0500

numpy (1:1.24.1-1) experimental; urgency=medium

  * New upstream release
  * debian/tests/
    - use py3versions --supported instead of --requested

 -- Sandro Tosi <morph@debian.org>  Mon, 26 Dec 2022 20:27:08 -0500

numpy (1:1.24.0-1) experimental; urgency=medium

  * New upstream release
  * debian/patches/
    - refresh patches
  * Stop building the -doc package; the cost of maintaining the build process
    and packaging more and more new packages is no longer sustainable, given the
    few users actually installing it.
  * debian/control
    - bump Standards-Version to 4.6.2.0 (no changes needed)

 -- Sandro Tosi <morph@debian.org>  Mon, 19 Dec 2022 01:28:04 -0500

numpy (1:1.23.5-2) unstable; urgency=medium

  * upload to unstable

 -- Sandro Tosi <morph@debian.org>  Mon, 12 Dec 2022 18:21:15 -0500

numpy (1:1.23.5-1) experimental; urgency=medium

  * New upstream release
  * debian/watch
    - track releases via GitHub APIs
  * debian/patches
    - refresh/disable patches
  * debian/tests/control
    - replace libopenblas-base (transitional pkg, now removed) with
      libopenblas0; Closes: #1024439
  * debian/edit_console_scripts.py, debian/rules
    - add a new helper script to edit console_scripts section of
      entry_points.txt

 -- Sandro Tosi <morph@debian.org>  Thu, 08 Dec 2022 01:57:30 -0500

numpy (1:1.23.3-1) experimental; urgency=medium

  * New upstream release
  * debian/rules
    - set SETUPTOOLS_USE_DISTUTILS=stdlib to ensure compatibility with
      setuptools >= 60.0.0; Thanks to Jochen Sprickerhof

 -- Sandro Tosi <morph@debian.org>  Thu, 03 Nov 2022 23:33:17 -0400

numpy (1:1.23.2-1) experimental; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Mon, 15 Aug 2022 00:30:33 -0400

numpy (1:1.23.1-1) experimental; urgency=medium

  * New upstream release
  * debian/watch
    - track github releases (containing extra files like SVML), not tags
  * debian/control
    - bump versioned b-d on cython3 to >= 0.29.30
    - add typing-extensions to b-d, needed by tests
  * debian/patches/
    - refresh/drop patches
  * debian/rules
    - enable SVML, available by using the github release tarball
  * debian/patches/docs_disable_switcher_version.patch
    - disable switcher_version theme, until we can build a more recent version
      of pydata-sphinx-theme
  * debian/versions3.helper
    - update to modern python3, and better error messages
  * debian/versions
    - bump API version to 16
  * debian/rules
    - rework how we run tests at build time
  * debian/tests
    - adjustments to autopkgtests for new upstream code

 -- Sandro Tosi <morph@debian.org>  Thu, 11 Aug 2022 00:43:08 -0400

numpy (1:1.22.1-1) experimental; urgency=medium

  * debian/rules
    - install dh_numpy3 manpage
  * Install numpy.i SWIG interface in /usr/include/python3.x/numpy in the main
    package, instead of -doc; Closes: #1000678
  * debian/copyright
    - extend packaging copyright years
    - update upstream copyright information
  * refresh patches
  * debian/control
    - add doxygen, breathe, and sphinx-panels to b-d, needed by doc
    - bump b-d on python3-hypothesis to >= 6.35.0
  * debian/versions
    - bump API version
  * debian/patches/PR20695.patch, debian/rules
    - temporarily disable SVML

 -- Sandro Tosi <morph@debian.org>  Tue, 18 Jan 2022 01:30:22 -0500

numpy (1:1.21.5-2) unstable; urgency=medium

  [ Stefano Rivera]
  * Team upload.

  [ Sandro Tosi ]
  * debian/rules
    - set SETUPTOOLS_USE_DISTUTILS=stdlib to ensure compatibility with
      setuptools >= 60.0.0; Thanks to Jochen Sprickerhof; Closes: #1020135

  [ Graham Inggs ]
  * Use `Py_SET_TYPE` macro instead of assigning to `Py_TYPE` for
    compatibility with Python 3.11.

 -- Stefano Rivera <stefanor@debian.org>  Fri, 11 Nov 2022 21:03:10 +0200

numpy (1:1.21.5-1) unstable; urgency=medium

  * New upstream release
  * debian/rules
    - dont compress woff, woff2, and ico files; Closes: #1001518
  * debian/{dh_numpy3.1, README.DebianMaints}
    - properly document dh_numpy3, patch by Julian Gilbey; Closes: #1000566

 -- Sandro Tosi <morph@debian.org>  Mon, 20 Dec 2021 00:57:37 -0500

numpy (1:1.21.4-2) unstable; urgency=medium

  [ Dan Bungert ]
  * Packaging changes for compatibility with python 3.10; Closes: #999812

  [ Sandro Tosi ]
  * stop building -dbg package; Closes: #994316
  * debian/python3-numpy.install
    - simplify numpy module installation, as suggested by Drew Parsons
  * upload to unstable; Closes: #995318

 -- Sandro Tosi <morph@debian.org>  Fri, 19 Nov 2021 23:39:08 -0500

numpy (1:1.21.4-1) experimental; urgency=medium

  * New upstream release
  * debian/control
    - bump Standards-Version to 4.6.0.1 (no changes needed)
  * debian/patches/PR20179.patch
    - drop patch, merged upstream

 -- Sandro Tosi <morph@debian.org>  Wed, 10 Nov 2021 01:04:21 -0500

numpy (1:1.21.2-3) experimental; urgency=medium

  * debian/python3-numpy.install
    - install typing submodule; Closes: #998109

 -- Sandro Tosi <morph@debian.org>  Fri, 05 Nov 2021 01:08:43 -0400

numpy (1:1.21.2-2) experimental; urgency=medium

  * debian/patches/PR20179.patch
    - fix a failure on armhf when running tests

 -- Sandro Tosi <morph@debian.org>  Sun, 24 Oct 2021 00:52:29 -0400

numpy (1:1.21.2-1) experimental; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster:
    + Build-Depends: Drop versioned constraint on gfortran.
    + python3-numpy: Drop versioned constraint on gcc in Suggests.
    + python3-numpy: Drop versioned constraint on python3-aplpy,
      python3-astropy, python3-ccdproc, python3-dask, python3-skimage,
      python3-tables and python3-theano in Breaks.

  [ Sandro Tosi ]
  * New upstream release
  * debian/watch
    - track github releases
  * debian/copyright
    - update upstream copyright notices
  * debian/patches
    - refresh patches
  * debian/control
    - merge b-d-i into b-d
    - bump b-d on cython3 to >= 0.29.24
    - bump b-d on pydata-sphinx-theme to >= 0.7.1
  * debian/patches/setup-py-accept-config.patch
    - allow setup.py config
  * debian/rules
    - set GITVER when building doc
    - also set PYTHONPATH when running tests, this allows those spawning a
      separate interpreter to still use the newly built module

 -- Sandro Tosi <morph@debian.org>  Sat, 23 Oct 2021 17:32:00 -0400

numpy (1:1.20.2-1) experimental; urgency=medium

  * New upstream release
  * debian/copyright
    - update upstream copyright years
    - remove notice for doc/scipy-sphinx-theme, dropped upstream
    - remove notice for doc/sphinxext, dropped upstream
  * debian/control
    - add numpydoc to b-d, needed by doc

 -- Sandro Tosi <morph@debian.org>  Sat, 03 Apr 2021 13:01:26 -0400

numpy (1:1.20.0-1) experimental; urgency=medium

  * New upstream release
  * debian/patches
    - refresh patches
  * debian/control
    - add pydata-sphinx-theme and pandas-doc to b-d, needed by doc
  * debian/versions
    - update for new Numpy API 14
  * debian/copyright
    - updates for new upstream code

 -- Sandro Tosi <morph@debian.org>  Fri, 02 Apr 2021 01:54:06 -0400

numpy (1:1.19.5-1) unstable; urgency=medium

  * New upstream release
  * Use the new Debian Python Team contact name and address
  * debian/control
    - bump Standards-Version to 4.5.1 (no changes needed)
    - run wrap-and-sort
  * debian/copyright
    - extend packaging copyright years

 -- Sandro Tosi <morph@debian.org>  Wed, 13 Jan 2021 01:25:24 -0500

numpy (1:1.19.4-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Mon, 02 Nov 2020 23:30:38 -0500

numpy (1:1.19.3-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Wed, 28 Oct 2020 22:59:46 -0400

numpy (1:1.19.2-2) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Sandro Tosi ]
  * debian/tests/control
    - add hypothesis to some autopkgtests

 -- Sandro Tosi <morph@debian.org>  Fri, 25 Sep 2020 01:48:22 -0400

numpy (1:1.19.2-1) unstable; urgency=medium

  * New upstream release
  * Refresh patches
  * debian/patches/sphinx_no_dashW.patch
    - remove -W option from sphinx-build, until upstream supports sphinx 3

 -- Sandro Tosi <morph@debian.org>  Wed, 16 Sep 2020 01:14:11 -0400

numpy (1:1.19.1-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - update versione b-d on hypothesis to >= 5.19.1
    - bump b-d on cython3 to >= 0.29.21

 -- Sandro Tosi <morph@debian.org>  Wed, 22 Jul 2020 20:59:57 -0400

numpy (1:1.19.0-1) unstable; urgency=medium

  * New upstream release
  * upload to unstable

 -- Sandro Tosi <morph@debian.org>  Sun, 21 Jun 2020 21:02:50 -0400

numpy (1:1.19.0~rc2-2) experimental; urgency=medium

  * debian/patches/debian_skip_tests.patch
    - skip test_full_reimport

 -- Sandro Tosi <morph@debian.org>  Sat, 06 Jun 2020 20:31:14 -0400

numpy (1:1.19.0~rc2-1) experimental; urgency=medium

  * New upstream release candidate
  * debian/control
    - update b-d on hypothesis to be versioned >= 5.12.0

 -- Sandro Tosi <morph@debian.org>  Wed, 03 Jun 2020 21:11:56 -0400

numpy (1:1.19.0~rc1-1) experimental; urgency=medium

  * New upstream release candidate
  * debian/control
    - add hypothesis to b-d, needed by tests
    - add skimage, imageio -doc pkgs to b-d, needed by doc intersphinx objects
  * debian/patches/*
    - refresh/update patches
  * debian/copyright
    - update upstream copyright notice

 -- Sandro Tosi <morph@debian.org>  Mon, 18 May 2020 18:48:37 -0400

numpy (1:1.18.4-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Wed, 06 May 2020 19:26:24 -0400

numpy (1:1.18.3-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - bump Standards-Version to 4.5.0 (no changes needed)

 -- Sandro Tosi <morph@debian.org>  Sun, 19 Apr 2020 21:36:17 -0400

numpy (1:1.18.2-2) unstable; urgency=medium

  * debian/patches/debian_skip_tests.patch
    - skip test_compile*, as we cant realiably compile from within numpy module
      location (sadly numpy.test() extra_argv didnt work)

 -- Sandro Tosi <morph@debian.org>  Sat, 18 Apr 2020 02:06:44 -0400

numpy (1:1.18.2-1) unstable; urgency=medium

  [ Laurent Bigonville ]
  * Team upload.
  * Port debian/versions3.helper to python3; Closes: #948354, #956527
  * debian/control: Mark several BD with <!nocheck> to break dependency cycle
    (Closes: #946607)
  * debian/control: Move the packages needed to generate the doc package to BDI
  * debian/control: Mark the -doc package and its BD with <!nodoc>
  * debian/control: Make the python3-numpy package provide dh-sequence-numpy3
    (Closes: #950953)

  [ Sandro Tosi ]
  * New upstream release
  * debian/python3-numpy.docs
    - install some additional documentation
  * debian/control
    - require sphinx 2+
  * Refresh & drop patches as per new upstream code
  * debian/copyright
    - extend packaging copyright years

 -- Sandro Tosi <morph@debian.org>  Thu, 16 Apr 2020 01:11:06 -0400

numpy (1:1.17.4-5) unstable; urgency=medium

  * debian/rules
    - edit entry_points.txt only if it's present, fixing a FTBFS for arch:all;
      Closes: #945263

 -- Sandro Tosi <morph@debian.org>  Sun, 22 Dec 2019 01:50:13 -0500

numpy (1:1.17.4-4) unstable; urgency=medium

  * debian/rules
    - add an f2py entry_point for all supported py3k versions; Closes: #945263
  * debian/patches/use_local_object.inv_files.patch
    - update SciPy object.inv location

 -- Sandro Tosi <morph@debian.org>  Wed, 11 Dec 2019 12:57:27 -0500

numpy (1:1.17.4-3) unstable; urgency=medium

  * debian/tests/control
    - add python3-distutils to the `distutils` test depends

 -- Sandro Tosi <morph@debian.org>  Sun, 17 Nov 2019 19:21:07 -0500

numpy (1:1.17.4-2) unstable; urgency=medium

  * debian/tests/{atlas,openblas}
    - use the `python3` script in autotests

 -- Sandro Tosi <morph@debian.org>  Sat, 16 Nov 2019 23:58:08 -0500

numpy (1:1.17.4-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * Bump Standards-Version to 4.4.1.
  * d/control: Fix wrong Vcs-*.

  [ Sandro Tosi ]
  * New upstream release
  * debian/patches/PR14769.patch
    - fix integer size confusion in handling array's ndmin on s390x

 -- Sandro Tosi <morph@debian.org>  Tue, 12 Nov 2019 10:30:17 -0500

numpy (1:1.17.2-1) experimental; urgency=medium

  * New upstream release
  * Rename source package to numpy, to track py3k-only upstream source
  * debian/watch
    - track the latest release
  * debian/control
    - drop python2 packages
    - use cython3 >= 0.29.2
    - add ipython, scipy, dvisvgm, texlive-latex-base/extra to b-d, needed to
      build doc
    - remove all Breaks/Repleaces from -dbg package
  * debian/tests
    - autopkgtests: only test py3k
  * debian/dh_numpy*
    - keep only py3k dh_numpy (+ helpers)
  * debian/rules
    - build only py3k packages
    - dont regenerate generate_mtrand_c.py, removed upstream
    - use pybuild
    - let tests be run during install, not via dh sequencer
  * debian/copyright
    - update to upstream new code
  * Use objects.inv from python3/scipy/maptlotlib -doc packages

 -- Sandro Tosi <morph@debian.org>  Sat, 21 Sep 2019 16:09:25 -0400

python-numpy (1:1.16.5-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * Use debhelper-compat instead of debian/compat.
  * Bump Standards-Version to 4.4.0.

  [ Drew Parsons ]
  * move python3-matplotlib to Build-Depends-Indep. Build docs under
    override_dh_auto_build-indep. Thanks Jason Duerstock.
    Closes: #929975

  [ Sandro Tosi ]
  * New upstream release; Closes: #933056, #931541
  * debian/watch
    - only search for 1.16.x releases, the only ones supporting python2
  * debian/copyright
    - document numpy/linalg/lapack_lite/ copyright and license

 -- Sandro Tosi <morph@debian.org>  Sat, 07 Sep 2019 17:33:43 -0400

python-numpy (1:1.16.2-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Sat, 02 Mar 2019 11:30:12 -0500

python-numpy (1:1.16.1-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Thu, 31 Jan 2019 22:21:17 -0500

python-numpy (1:1.16.0-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Thu, 17 Jan 2019 22:49:04 -0500

python-numpy (1:1.16.0~rc2-2) unstable; urgency=medium

  * Team upload.

  [ Ondřej Nový ]
  * d/changelog: Remove trailing whitespaces.

  [ Emilio Pozuelo Monfort ]
  * Add more breaks for older versions of packages not compatible with
    Numpy 1.16.
  * Fix breaks on python-astropy. Closes: #918544.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 11 Jan 2019 14:51:15 +0100

python-numpy (1:1.16.0~rc2-1) unstable; urgency=medium

  * New upstream release candidate
  * debian/control
    - restore b-d on libblas-dev and liblapack-dev, instead of
      libatlas-base-dev; Closes: #913567
    - Add Breaks for packages not compatible with 1.16; Closes: #918399
  * debian/copyright
    - extend packaging copyright years
    - update upstream copyright years
  * debian/patches/0007-fix-test_various_alignments.patch
    - drop, applied upstream

 -- Sandro Tosi <morph@debian.org>  Sat, 05 Jan 2019 19:54:44 -0500

python-numpy (1:1.16.0~rc1-3) unstable; urgency=medium

  * debian/control
    - add pkg_resources to Depends, needed by f2py; Closes: #917878

 -- Sandro Tosi <morph@debian.org>  Mon, 31 Dec 2018 14:39:01 -0500

python-numpy (1:1.16.0~rc1-2) unstable; urgency=medium

  * debian/patches/0007-fix-test_various_alignments.patch
    - fix FTBFS on i386 archs due to tests suite being Aborted
  * debian/control
    - bump Standards-Version to 4.3.0 (no changes needed)

 -- Sandro Tosi <morph@debian.org>  Wed, 26 Dec 2018 11:37:59 -0500

python-numpy (1:1.16.0~rc1-1) unstable; urgency=medium

  * New upstream release candidate
  * debian/copyright
    - update upstream copyright years
  * debian/patch
    - refresh, drop
  * debian/rules
    - remove override_dh_python2, no longer needed
  * debian/versions
    - update ABI/API versions
  * debian/control
    - drop explicit b-d on python3.6-dev; Closes: #916821

 -- Sandro Tosi <morph@debian.org>  Mon, 24 Dec 2018 15:26:14 -0500

python-numpy (1:1.15.4-2) unstable; urgency=medium

  * debian/patches/python3-soabi.patch
    - fix skip syntax
  * debian/tests/control
    - switch from nose to pytest

 -- Sandro Tosi <morph@debian.org>  Thu, 22 Nov 2018 18:02:32 -0500

python-numpy (1:1.15.4-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - switch from nose to pytest
    - b-d on libatlas-base-dev
    - bump Standards-Version to 4.2.1 (no changes needed)
  * debian/copyright
    - add notice for doc/scipy-sphinx-theme/
  * debian/patches/*
    - refresh, drop patch merged upstream
  * debian/rules
    - run tests from debian/, to avoid pytest ImportMismatchError

 -- Sandro Tosi <morph@debian.org>  Sun, 11 Nov 2018 19:59:10 -0500

python-numpy (1:1.14.5-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Tue, 12 Jun 2018 19:33:00 -0400

python-numpy (1:1.14.4-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Remove ancient X-Python-Version field
  * d/control: Remove ancient X-Python3-Version field

  [ Sandro Tosi ]
  * New upstream release; Closes: #898776

 -- Sandro Tosi <morph@debian.org>  Thu, 07 Jun 2018 21:02:36 -0400

python-numpy (1:1.14.3-2) unstable; urgency=medium

  * debian/control
    - move docutils, matplotlib, sphinx from b-d-i to b-d, needed to build doc

 -- Sandro Tosi <morph@debian.org>  Sat, 05 May 2018 18:57:59 -0400

python-numpy (1:1.14.3-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Set Vcs-* to salsa.debian.org
  * d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
  * d/rules: Remove trailing whitespaces

  [ Stuart Prescott ]
  * add debhelper sequence to support --with numpy,numpy3; Closes: #897602

  [ Sandro Tosi ]
  * New upstream release; Closes: #872459, #896633
  * debian/watch
    - switch back to use pypi.debian.net redirector
  * debian/patches
    - refresh for new upstream release
  * debian/copyright
    - extend packaging copyright years
  * debian/versions
    - bump API version to 12
  * debian/rules
    - comment f2py.1 installation, no longer available upstream (hopefully only
      temporarily)
  * bump compat to 11, and fix debian/rules to use proper dh sequencer
  * debian/control
    - bump Standards-Version to 4.1.4 (no changes needed)
  * debian/patches/0007-ENH-Add-support-for-the-64-bit-RISC-V-architecture.patch
    - add support for riscv64 architecture; Closes: #894574

 -- Sandro Tosi <morph@debian.org>  Sat, 05 May 2018 17:06:18 -0400

python-numpy (1:1.13.3-2) unstable; urgency=medium

  * Team upload.
  * Remove unneeded debian/docs and debian/dirs.
  * debian/control:
    + Drop Build-Depends on python3.5-dev.  Closes: #883457
    + Bump Standards-Version to 4.1.2, no changes needed.
    + Add several Multi-Arch tags from the m-a hinter.

 -- Mattia Rizzolo <mattia@debian.org>  Mon, 04 Dec 2017 22:14:48 +0100

python-numpy (1:1.13.3-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - bump Standards-Version to 4.1.1 (no changes needed)
    - remove Prio: extra from debug packages
    - use py3k matplotlib in b-d-i, needed by doc
  * use python3-sphinx to build doc
  * debian/tests/*
    - fix autopkg test dependencies, and atlas and openblas test for multi-arch
      library locations; Closes: #876006
  * debian/rules
    - use the python3 library path to build the doc

 -- Sandro Tosi <morph@debian.org>  Sun, 26 Nov 2017 12:09:11 -0500

python-numpy (1:1.13.1-1) unstable; urgency=medium

  * New upstream release; Closes: #702169
  * debian/version
    - bump api and api-min-version
  * Acknowledge NMUs

 -- Sandro Tosi <morph@debian.org>  Mon, 04 Sep 2017 21:22:47 -0400

python-numpy (1:1.12.1-3.2) unstable; urgency=medium

  * Non-maintainer upload.
  * Build-depend on the just rebuilt cython.

 -- Matthias Klose <doko@debian.org>  Sat, 02 Sep 2017 07:45:52 +0200

python-numpy (1:1.12.1-3.1) unstable; urgency=medium

  * Non-maintainer upload.
  * "No-change" upload to rebuild with pythonX.Y not using the _fpectl module.
  * Tighten the build dependencies for the pythonX.Y packages (can be dropped
    again once the pythonX.Y packages are available everywhere).

 -- Matthias Klose <doko@debian.org>  Fri, 01 Sep 2017 07:39:42 +0200

python-numpy (1:1.12.1-3) unstable; urgency=medium

  * debian/patches/0007-BUG-Don-t-signal-FP-exceptions-in-np.absolute.patch
    - fix RuntimeWarning on numpy.abs(numpy.nan) on some archs; Closes: #863192

 -- Sandro Tosi <morph@debian.org>  Sat, 27 May 2017 19:44:59 -0400

python-numpy (1:1.12.1-2) unstable; urgency=medium

  * Team upload
  * fix linking manpage in arch-indep build (Closes: #859619)

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Wed, 05 Apr 2017 12:26:43 +0200

python-numpy (1:1.12.1-1) unstable; urgency=medium

  * New upstream bugfix release (Closes: #859019)
  * debian/patches/0007-BUG-fix-wrong-masked-median-for-some-special-cases.patch
    dropped, applied upstream

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Tue, 04 Apr 2017 15:08:27 +0200

python-numpy (1:1.12.0-2) unstable; urgency=medium

  * debian/patches/0007-BUG-fix-wrong-masked-median-for-some-special-cases.patch
    - fix wrong masked median for some special cases; Closes: #851858

 -- Sandro Tosi <morph@debian.org>  Thu, 19 Jan 2017 19:34:19 -0500

python-numpy (1:1.12.0-1) unstable; urgency=medium

  * New upstream release
  * debian/watch
    - point directly to PyPI while pypi.debian.net is unavailable

 -- Sandro Tosi <morph@debian.org>  Mon, 16 Jan 2017 12:15:17 -0500

python-numpy (1:1.12.0~rc2-1) unstable; urgency=medium

  * New upstream release candidate
    - let linspace accept input that has an array_interface: Closes: #842348
    - add a lock to assert_equal and other testing functions: Closes: #849196
  * debian/copyright
    - extend packaging copyright years

 -- Sandro Tosi <morph@debian.org>  Thu, 05 Jan 2017 22:37:36 -0500

python-numpy (1:1.12.0~b1-1) unstable; urgency=medium

  * New upstream beta release
  * debian/watch
    - use PyPI redirector, upstream declared PyPI the preferred way to retrieve
      Numpy tarball
  * debian/control
    - update X-Python{,3}-Version fields

 -- Sandro Tosi <morph@debian.org>  Sat, 17 Dec 2016 21:40:13 -0500

python-numpy (1:1.11.2-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - remove Julian from Uploaders (to reflect reality): please come back as
      soon as you have more time!
    - set me to Maintainer, team as Uploaders

 -- Sandro Tosi <morph@debian.org>  Sat, 08 Oct 2016 19:48:11 -0400

python-numpy (1:1.11.2~rc1-1) unstable; urgency=medium

  [ Sandro Tosi ]
  * New upstream release candidate

  [ Ondřej Nový ]
  * New upstream release
  * d/contorl: Removed XS-Testsuite
  * Fixed typo in dh_numpy (1) manpage
  * d/copyright: Fixed typo in word univer(s)ity
  * Removed lintian override for extra-license-file

 -- Sandro Tosi <morph@debian.org>  Fri, 23 Sep 2016 19:54:04 +0100

python-numpy (1:1.11.1~rc1-1) unstable; urgency=medium

  * New upstream release candidate
  * debian/control
    - bump Standards-Version to 3.9.8 (no changes needed)

 -- Sandro Tosi <morph@debian.org>  Mon, 30 May 2016 21:41:04 +0100

python-numpy (1:1.11.0-1) unstable; urgency=medium

  [ Sandro Tosi ]
  * New upstream release: Closes: #816369, #813429, #813932, #816574
  * debian/control
    - bump Standards-Version to 3.9.7 (no changes needed)

  [ Ondřej Nový ]
  * Fixed VCS URL

 -- Sandro Tosi <morph@debian.org>  Sat, 09 Apr 2016 09:47:40 +0100

python-numpy (1:1.11.0~b3-1) unstable; urgency=medium

  * New upstream beta release
  * debian/control
    - switch Vcs-Git to HTTPS

 -- Sandro Tosi <morph@debian.org>  Sat, 13 Feb 2016 23:06:52 +0000

python-numpy (1:1.11.0~b2-1) unstable; urgency=medium

  * New upstream beta release
  * debian/copyright
    - update upstream copyright notice
  * debian/rules
    - upstream deprecated setup.py clean, so replace dh_auto_clean with an
      explicit rm of the build/ dir
  * debian/python-numpy.docs
    - DEV_README was dropped, removed
  * debian/control
    - add setuptools to b-d

 -- Sandro Tosi <morph@debian.org>  Sun, 31 Jan 2016 00:44:41 +0000

python-numpy (1:1.10.4-2) unstable; urgency=medium

  * debian/patches/0006-disable-asserts-on-ppc-with-broken-malloc-only-longd.patch
    - recovered from the uploads to sid, needed to fix a FTBFS on powerpc

 -- Sandro Tosi <morph@debian.org>  Tue, 12 Jan 2016 18:24:12 +0000

python-numpy (1:1.10.4-1) unstable; urgency=medium

  * New upstream release
    - fix a typo in help(numpy.kron); Closes: #777172
    - generate the referene content in the doc; Closes: #804479
  * debian/copyright
    - extend packaging copyright notice
  * dh_numpy and dh_numpy3 use 2 different files from where to read the
    versions, thus making the py3k package indipendent of the python2;
    Closes: #797943
  * debian/rules
    - dont fail when files are missing if we are running dpkg-bp -A;
      Closes: #806099
  * debian/patches/0005-Dont-fail-if-we-cant-import-mingw32.patch
    - skip the import of mingw32(), needed for the version.helper scripts

 -- Sandro Tosi <morph@debian.org>  Sun, 10 Jan 2016 22:58:41 +0000

python-numpy (1:1.10.0~b1-1) experimental; urgency=medium

  * New upstream beta release
  * debian/patches/*
    - refreshed for new upstream code
  * debian/versions
    - bump API version to 10
  * debian/control
    - require nose version 1.0 or later
  * debian/copyright
    - extend upstream packaging years
    - remove/update copyright notice for updated files

 -- Sandro Tosi <morph@debian.org>  Wed, 12 Aug 2015 21:51:29 +0100

python-numpy (1:1.9.2-5) unstable; urgency=medium

  * debian/patches/ppc_noassert.patch
    - fix 'if defined()' syntax, and select only powerpc and not powerpc64 as
      well; thanks to Emilio Pozuelo Monfort

 -- Sandro Tosi <morph@debian.org>  Thu, 01 Oct 2015 23:30:10 +0100

python-numpy (1:1.9.2-4) unstable; urgency=medium

  * debian/patches/ppc_noassert.patch
    - use the same powerpc macro as used in npy_cpu.h

 -- Sandro Tosi <morph@debian.org>  Thu, 01 Oct 2015 20:17:05 +0100

python-numpy (1:1.9.2-3) unstable; urgency=medium

  * debian/patches/ppc_noassert.patch
    - disable assert on PowerPC due to broken malloc; thanks to Julian Taylor
      for the patch; Closes: #800392

 -- Sandro Tosi <morph@debian.org>  Wed, 30 Sep 2015 21:23:26 +0100

python-numpy (1:1.9.2-2) unstable; urgency=medium

  * upload to unstable

 -- Sandro Tosi <morph@debian.org>  Tue, 11 Aug 2015 22:56:27 +0100

python-numpy (1:1.9.2-1) experimental; urgency=medium

  * New upstream release

 -- Sandro Tosi <morph@debian.org>  Wed, 08 Apr 2015 18:49:50 +0100

python-numpy (1:1.9.2~rc1-1) experimental; urgency=medium

  * New upstream release candidate
  * debian/copyright
    - extend packaging copyright years
  * debian/control
    - bump Standards-Version to 3.9.6 (no changes needed)
    - add dh-python to b-d
  * debian/patches/02_build_dotblas.patch
    - refresh due to new code
  * debian/{python-numpy-doc.install, patches/adapt_swig_docs_to_debian.patch}
    - install SWIG interface for Numpy; thanks to Julian Taylor for the report;
      Closes: #703001
  * debian/rules
    - don't ignore failures when running unittests; Closes: #721100

 -- Sandro Tosi <morph@debian.org>  Sun, 08 Feb 2015 19:00:36 +0000

python-numpy (1:1.9.0~rc1-1) experimental; urgency=medium

  * New upstream release candidate
    - added support for or1k (Closes: #749195)
  * debian/{rules,python-numpy-doc.install,python-numpy.manpages}:
    f2py documentation moved to same tree as the rest
  * debian/python{,}3-numpy.install:
    oldnumeric and numarray have been removed
  * drop upstream applied ppc64el_cpu_config.patch

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Tue, 02 Sep 2014 21:28:36 +0200

python-numpy (1:1.8.2-2) unstable; urgency=medium

  * ppc64el_cpu_config.patch: add ppc64el support (Closes: #756403)

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Sun, 24 Aug 2014 11:10:34 +0200

python-numpy (1:1.8.2-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Sat, 09 Aug 2014 12:56:52 +0200

python-numpy (1:1.8.1-1) unstable; urgency=medium

  * New upstream bugfix release
    - remove upstream applied quantities-linspace.patch
    - remove upstream applied restore-3kcompat-api.patch

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Thu, 27 Mar 2014 19:29:12 +0100

python-numpy (1:1.8.1~rc1-2) unstable; urgency=medium

  * fix -arch build by only calling dh_sphinxdoc in -indep
  * quantities-linspace.patch: avoid breaking python-quantities

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Thu, 13 Mar 2014 18:40:56 +0100

python-numpy (1:1.8.1~rc1-1) unstable; urgency=low

  * New upstream bugfix release candidate
    - removed python-numpydoc from b-d, upstream tarballs includes it again
    - fixes insecure mktemp usage of f2py (Closes: #737778)
  * add autopkgtests running testsuite with different BLAS and testing f2py
    and distutils (Closes: #695881)
  * use dh_python2 instead of deprecated pysupport
  * 50_search-multiarch-paths.patch: drop, applied upstream
  * build depend on cython and cythonize mtrand.pyx (Closes: #710177)
  * move documentation build depends to -indep (Closes: #739019)
  * run tests in verbose mode (Closes: #724611)
  * python3-soabi.patch: fix ctypeslib for python3 soabi in extension filenames
  * debian/python3-numpy-dbg.install:
    - fix duplicate files in dbg package of kfreebsd (Closes: #740318)
  * bump Standards-Version to 3.9.5 (no changes needed)
  * restore-3kcompat-api.patch:
    add upstream patch to restore private api used by matplotlib

 -- Julian Taylor <jtaylor.debian@googlemail.com>  Sun, 02 Mar 2014 15:33:25 +0100

python-numpy (1:1.8.0-1) experimental; urgency=low

  * New upstream release; Closes: #724047, #701920, #710177
  * debian/copyright
    - added new files' copyright
  * debian/README.Debian
    - removed, obsolete
  * debian/patches/40_m68k_long_double_format.diff
    - removed, merged upstream
  * debian/patches/*
    - refreshed
  * debian/python-numpy.docs
    - no longer install benchmark dir, removed upstream
  * debian/versions
    - bump API version to 9
  * debian/control
    - bump Standards-Version to 3.9.4 (no changes needed)
    - bump minimum python version requirements
    - added python-numpydoc to b-d, needed to build doc

 -- Sandro Tosi <morph@debian.org>  Sat, 02 Nov 2013 13:18:24 +0100

python-numpy (1:1.7.1-5) unstable; urgency=high

  * Team upload
  * Brown-paper bag upload to fix the dbg packages in kfreebsd
    (Closes: #740318 for real).

 -- Didier Raboud <odyx@debian.org>  Thu, 06 Mar 2014 11:14:12 +0100

python-numpy (1:1.7.1-4) unstable; urgency=high

  * Team upload
  * Urgency high to fix coinstallability of kfreebsd in testing.

  [Julian Taylor]
  * debian/python3-numpy-dbg.install:
    - fix duplicate files in dbg package of kfreebsd (Closes: #740318)

 -- Didier Raboud <odyx@debian.org>  Wed, 05 Mar 2014 14:16:36 +0100

python-numpy (1:1.7.1-3) unstable; urgency=medium

  * Team upload.
  * Medium urgency for RC bug fix
  * Fix regex for python3 debug .so files so kfreebsd .so files aren't removed
    in error (Closes: #718900)

 -- Scott Kitterman <scott@kitterman.com>  Wed, 28 Aug 2013 00:19:00 -0400

python-numpy (1:1.7.1-2) unstable; urgency=low

  [ Jakub Wilk ]
  * Use canonical URIs for Vcs-* fields.

  [ Scott Kitterman ]
  * In debian/rules, use python abiflags to find include directories for both
    python3.2 and python3.3 (mu/dmu versus m/dm); thanks to Julian Taylor for
    the report and patch; Closes: #705346

  [ Sandro Tosi ]
  * upload to unstable; that implicitly supports Python 3.3; thanks to Lucas
    Nussbaum for the report; Closes: #707461

 -- Sandro Tosi <morph@debian.org>  Mon, 10 Jun 2013 20:27:13 +0200

python-numpy (1:1.7.1-1) experimental; urgency=low

  * New upstream release
  * Acknowledge NMU as of 1.6.2-1.2; Closes: #700718, #700994

 -- Sandro Tosi <morph@debian.org>  Mon, 08 Apr 2013 21:39:55 +0200

python-numpy (1:1.7.0-1) experimental; urgency=low

  * New upstream release
  * debian/copyright
    - added packaging copyright for my contributions
  * Acknowledge NMU as of 1.6.2-1.1 ; Closes: #685812

 -- Sandro Tosi <morph@debian.org>  Wed, 13 Feb 2013 21:24:57 +0100

python-numpy (1:1.7.0~rc2-1) experimental; urgency=low

  [ Sandro Tosi ]
  * New upstream release candidate
  * debian/patches/40_m68k_long_double_format.diff
    - updated to new upstream code

  [ Yaroslav Halchenko ]
  * debian/rules
    - safe-guard all for loops with 'set -e; ' to prevent uncaught failures;
      Closes: #695955

 -- Sandro Tosi <morph@debian.org>  Thu, 07 Feb 2013 21:48:46 +0100

python-numpy (1:1.7.0~rc1-1) experimental; urgency=low

  * New upstream release candidate
  * debian/control
    - updated Homepage field
    - adjusted supported Python3 versions (>= 3.1)

 -- Sandro Tosi <morph@debian.org>  Sun, 30 Dec 2012 12:23:06 +0100

python-numpy (1:1.7.0~b2-1) experimental; urgency=low

  * New upstream beta release

 -- Sandro Tosi <morph@debian.org>  Sat, 29 Sep 2012 10:46:38 +0200

python-numpy (1:1.7.0~b1-1) experimental; urgency=low

  * New upstream beta release
  * debian/rules
    - install f2py3 command and relative manpages; thanks to Julian Taylor for
      the report and patch; Closes: #675694
  * debian/watch
    - updated to identify beta releases
  * debian/copyright
    - extend upstream copyright years
    - updated to new upstream code
  * debian/versions
    - bump C_API_VERSION to 7
  * debian/control
    - added python{,3}-tz to b-d, needed to run tests
  * debian/patches/*
    - updated to new upstream code

 -- Sandro Tosi <morph@debian.org>  Fri, 31 Aug 2012 13:37:44 +0200

python-numpy (1:1.6.2-1.2) unstable; urgency=low

  * Non-maintainer upload.
  * Remove Breaks relationships introduced in previous version. They break
    squeeze -> wheezy upgrades. (Closes: #700718)
  * Install symlinks for Python 3 headers under /usr/include/python3.2mu (resp.
    python3.2dmu) instead of /usr/include/python3.2 (resp. python3.2_d),
    to avoid file versus symlink conflict. (Closes: #700994)

 -- Sébastien Villemot <sebastien@debian.org>  Wed, 27 Feb 2013 10:33:24 +0100

python-numpy (1:1.6.2-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * debian/control: add versioned Breaks relationship on reverse
    dependencies of python-numpy that are affected by the
    NPY_CHAR/PyArray_CHAR ABI breakage (Closes: #685812)

 -- Sébastien Villemot <sebastien@debian.org>  Fri, 08 Feb 2013 21:02:56 +0100

python-numpy (1:1.6.2-1) unstable; urgency=low

  * New upstream release
  * debian/patches/50_search-multiarch-paths.patch
    - re-introduce multi-arch paths detection, as a Debian-specific patch, until
      upstream will support a generic solution; Closes: #640940
  * debian/rules
    - fix command to move debug symbols in the right place; thanks to Dave
      Anglin for the report and patch; Closes: #672826

 -- Sandro Tosi <morph@debian.org>  Wed, 30 May 2012 19:38:39 +0200

python-numpy (1:1.6.2~rc1-1) unstable; urgency=low

  * New upstream release candidate
  * Add dh_numpy3, to generate dependencies for Python 3 packages using numpy;
    thanks to Julian Taylor for the report; Closes: #665998
  * debian/watch
    - recognize RC releases
  * debian/patches/{30_fix_unicode_mgmt_py27-32.patch,
                    50_search-multiarch-paths.patch}
    - removed, merged upstream
  * debian/rules
    - link the include directory to the right path to the header files for py3k
      numpy; thanks to Marc J. Driftmeyer for the report; Closes: #670970
    - remove leftover from build process, so the package can be built twice in a
      row; thanks to Jakub Wilk for the report; Closes: #671194
  * debian/python-numpy.links
    - correctly generate symlinks to numarray include files; thanks to Ian
      Zimmerman for the report; Closes: #631677

 -- Sandro Tosi <morph@debian.org>  Thu, 10 May 2012 20:11:16 +0200

python-numpy (1:1.6.1-8) unstable; urgency=low

  * debian/control
    - move python-matplotlib back to b-d, to fix FTBFS on some arch, effectively
      reverting fix for #655014

 -- Sandro Tosi <morph@debian.org>  Sat, 14 Apr 2012 23:26:07 +0200

python-numpy (1:1.6.1-7) unstable; urgency=low

  [ Thorsten Glaser ]
  * debian/control
    - move python-matplotlib to Build-Depends-Indep as it’s only needed when
      building the arch:all documentation package; Closes: #655014

  [ Andreas Schwab ]
  * debian/patches/20_m68k_long_double_format.diff
    - add support for the Motorola 68k big endian long double floating-point
      representation format; Closes: #655388

  [ Sandro Tosi ]
  * Upload to unstable
  * debian/patches/30_fix_unicode_mgmt_py27-32.patch
    - fix Unicode object management with Python 2.7 and 3.2; thanks to Julian
      Taylor for the report; Closes: #664672
  * debian/patches/50_search-multiarch-paths.patch, debian/control
    - add multiarch paths to those searched by Numpy distutils, adding gcc to
      Suggests (it's not needed so often); thanks to Julian Taylor for the
      report and patch (as shipped in Ubuntu); Closes: #640940

 -- Sandro Tosi <morph@debian.org>  Wed, 11 Apr 2012 00:42:00 +0200

python-numpy (1:1.6.1-6) experimental; urgency=low

  [ Thomas Kluyver ]
  * Add package for Python 3; Closes: #601593

  [ Sandro Tosi ]
  * Small fixes for python3 packaging
  * debian/control
    - bump Standards-Version to 3.9.3 (no changes needed)
    - remove quild from b-d, not needed since using 3.0 (quilt) format

 -- Sandro Tosi <morph@debian.org>  Sat, 17 Mar 2012 13:05:04 +0100

python-numpy (1:1.6.1-5) experimental; urgency=low

  * debian/versions
    - bump also api-min-version; thanks to Jakub Wilk for noticing it.

 -- Sandro Tosi <morph@debian.org>  Thu, 09 Feb 2012 22:34:35 +0100

python-numpy (1:1.6.1-4) experimental; urgency=low

  [ Yaroslav Halchenko ]
  * debian/rules
    - Check for nocheck instead of notest (policy 4.9.1)

  [ Sandro Tosi ]
  * Release fix for #643873 in experimental too, bumping API version to 6

 -- Sandro Tosi <morph@debian.org>  Thu, 09 Feb 2012 21:44:17 +0100

python-numpy (1:1.6.1-3) experimental; urgency=low

  * debian/{control, rules}
    - run tests at package build time; Closes: #601592

 -- Sandro Tosi <morph@debian.org>  Fri, 23 Sep 2011 23:18:03 +0200

python-numpy (1:1.6.1-2) experimental; urgency=low

  * debian/python.org_objects.inv
    - updated
  * debian/source/include-binaries
    - python.org_objects.inv is now binary so it needs whitelisting
  * debian/rules
    - call dh_sphinxdoc only for binary-indep packages, fixing a FTBFS on all
      the buildbots

 -- Sandro Tosi <morph@debian.org>  Sat, 17 Sep 2011 11:50:35 +0200

python-numpy (1:1.6.1-1) experimental; urgency=low

  * New upstream release; Closes: #633576
    - use DeprecationWarning instead of warning; Closes: #519483
    - fix lapack interface handling of non-native byte order: Closes: #581043
  * debian/python-numpy.docs
    - install benchmarks/ dir in the documentation
  * debian/copyright
    - updated
  * debian/rules
    - adjust pdist versions
    - install debug files where gdb will look for them
  * debian/control
    - remove Ondrej, Alexandre, Matthias, David from Uploaders: thanks for all
      the work you did!
    - bump Standards-Version to 3.9.2 (no changes needed)
    - removed DM-U-A flag, no more needed
    - removed useless fields
  * debian/{control, rules}
    - use dh_sphinxdoc
  * debian/python-numpy-doc.lintian-overrides
    - added to override extra-license-file, generated by a file needed by sphinx

 -- Sandro Tosi <morph@debian.org>  Fri, 16 Sep 2011 20:02:50 +0200

python-numpy (1:1.5.1-4) unstable; urgency=low

  [ Jakub Wilk ]
  * Enhancement to dh_numpy: now it is able to generate dependencies also on
    virtual packages matching Numpy API and ABI versions; this allows the
    packages to declare less strict relationships with python-numpy, improving
    the ability to handle Numpy newer versions transitions. A detailed
    description of the dependencies generation is available in
    README.DebianMaints file. Closes: #643873

  [ Sandro Tosi ]
  * debian/patches/20_sphinx_1.1.2.diff
    - fix a FTBFS with Sphinx 1.1.2 due to autoindex not being allowed in a
      glossary section; thanks to Jakub Wilk for the report; Closes: #655635

 -- Sandro Tosi <morph@debian.org>  Wed, 01 Feb 2012 19:09:17 +0100

python-numpy (1:1.5.1-3) unstable; urgency=low

  * debian/rules
    - make /u/b/f2py{,-dbg} real files (not symlink) with the shebang pointing
      to unversioned python{,-dbg}, this makes the package more binNMU friendly;
      thanks to Jakub Wilk for the report; Closes: #643857

 -- Sandro Tosi <morph@debian.org>  Tue, 04 Oct 2011 11:43:55 +0200

python-numpy (1:1.5.1-2) unstable; urgency=low

  * debian/rules
    - don't compress objects.inv; thanks to Michael Fladischer for the report;
      Closes: #608771

 -- Sandro Tosi <morph@debian.org>  Mon, 04 Apr 2011 15:27:09 +0200

python-numpy (1:1.5.1-1) experimental; urgency=low

  * New upstream release
  * debian/control
    - python-sphinx version 1.0.1 is the minimum required
    - bump Standards-Version to 3.9.1 (no changes needed)
  * debian/patches/{07_bts585309_string_exceptions.diff, changeset_*}
    - removed, available in upstream tarball
  * debian/rules
    - install libnpymath.a; thanks to Martin Hoefling for the report;
      Closes: #596987
    - updated pydist file definition

 -- Sandro Tosi <morph@debian.org>  Fri, 24 Dec 2010 00:14:25 +0100

python-numpy (1:1.4.1-5) unstable; urgency=low

  * debian/patches/10_use_local_python.org_object.inv_sphinx.diff
    - fixed small typo in description
  * debian/patches/changeset_r8364.diff
    - fix memory corruption (double free); thanks to Joseph Barillari for the
      report and to Michael Gilbert for pushing resolution; Closes: #581058

 -- Sandro Tosi <morph@debian.org>  Thu, 07 Oct 2010 10:19:13 +0200

python-numpy (1:1.4.1-4) unstable; urgency=low

  * debian/rules
    - starts providing /usr/share/python/dist/python-numpy file, to be used by
      dh_python2/dh_pysupport for dependency declaration
  * debian/{dh_numpy, python-numpy.install, python-numpy.manpages}
    - added debhelper script dh_numpy that using .../dist/python-numpy adds to
      python:Depends the correct versioned depends on python-numpy; thanks to
      Piotr Ożarowski for providing the script
  * debian/patches/changeset_r8526.diff
    - cherry-picked from upstream SVN patches to define the quad prec little
      endian double on Alpha, fixing the FTBFS on that arch; thanks to David
      Cournapeau for the patch and huge support! Closes: #590481
  * debian/{README.DebianMaints, python-numpy.docs}
    - added a mini-guide/explanation about dh_numpy and/or pydist files

 -- Sandro Tosi <morph@debian.org>  Wed, 28 Jul 2010 00:05:00 +0200

python-numpy (1:1.4.1-3) unstable; urgency=low

  * debian/rules
    - use the python-support specific directory (/usr/lib/pymodules) for the
      symlinks /usr/include/python*/numpy; this correctly installs the header
      files (mainly _numpyconfig.h) used by depending packages; Closes: #589592
  * debian/control
    - removed José Fonseca from Uploaders: thanks for your previous work!
  * debian/patches/changeset_r851{0,1}.diff
    - cherry-picked from upstream SVN patches to correctly detect double long on
      powerppc, fixing the FTBFS on that arch

 -- Sandro Tosi <morph@debian.org>  Fri, 23 Jul 2010 19:42:47 +0200

python-numpy (1:1.4.1-2) unstable; urgency=low

  * debian/rules
    - set MPLCONFIGDIR to a place writable even on buildd, the build dir
      (referenced with `.')

 -- Sandro Tosi <morph@debian.org>  Sat, 17 Jul 2010 20:25:40 +0200

python-numpy (1:1.4.1-1) unstable; urgency=low

  [ Sandro Tosi ]
  * debian/control
    - removed Marco Presi from uploaders: thanks for your work!
    - added myself to Uploaders
    - added python-sphinx and python-matplotlib to b-d, needed to build doc
    - drop python-numpy-ext, transitional package already in stable
    - bump Standards-Version to 3.9.0 (no changes needed)
    - removed Conflicts: all versions are already older than the ones in lenny
  * New upstream release
  * debian/patches/04_fix_utils_deprecated.patch
    - removed, upstream code has changed
  * debian/patches/05_fix_endianness_detection.patch
    - refreshed for new upstream code
    - disabled, since it generates a corrupted package (left here just in case)
  * debian/copyright
    - updated copyright notice; thanks to Yaroslav Halchenko for the report;
      Closes: #573614
    - added all the missing notices for copyrights & licenses differing from
      main ones
  * debian/rules
    - remove 'get-orig-source' target, no more needed
    - build and install documentation; thanks to Joel for the report;
      Closes: #508113
  * debian/python-numpy.install
    - sorted, it's clearer to read
    - added installation for 'compat', 'matrixlib' and 'polynomial' submodules
  * debian/patches/07_bts585309_string_exceptions.diff
    - added upstream patch (r8463) to remove string exceptions; Closes: #585309
  * debian/{compat, control, rules, *.install, *.doc}
    - switch from cdbs to dh7
  * debian/{control, rules}
    - use system-wide jquery instead of an embedded one
  * debian/python-numpy-doc.doc-base
    - added doc-base
  * debian/patches/10_use_local_python.org_object.inv_sphinx.diff
    - use a local copy of python.org object.inv file instead of downloading it
      from internet at doc build-time
  * debian/patches/03_force_f2py_version.patch
    - added description
  * debian/{control, README.f2py}
    - properly support f2py executables, Suggesting python-dev and gfortran and
      adding a readme file to explain that; thanks to Kevin Mitchell for the
      report; Closes: #586395
  * debian/{control, rules, *.preinst}
    - switch from python-central to python-support
  * debian/python-numpy.docs
    - separate each file in a different line and install README.f2py

  [ Piotr Ożarowski ]
  * debian/control: add XB-Python-Version to python-numpy-dbg package

  [ Kumar Appaiah ]
  * Convert to new source format: 3.0 (quilt) (Closes: #482706)
    + debian/rules: Remove CDBS' quilt related calls.
    + Add debian/source/format which says "3.0 (quilt)".

  [ Jakub Wilk ]
  * Add --prefix=/usr to setup.py in order to appease Python >= 2.6.
  * Move f2pyX.Y-dbg manpages from python-numpy to python-numpy-dbg.
  * Actually build f2pyX.Y-dbg and f2py-dbg binaries.
  * Fix shebangs for f2py* binaries.

  [ Matthias Klose ]
  * Use setup.py install --install-layout; specifying --prefix installs
    into the wrong location.

 -- Sandro Tosi <morph@debian.org>  Sat, 17 Jul 2010 11:50:56 +0200

python-numpy (1:1.3.0-3) unstable; urgency=low

  [ Kumar Appaiah ]
  * debian/patches/05_fix_endianness_detection.patch:
    Force endian.h usage in npy_endian.h. Thanks to Andreas Barth
    for bringing this to our notice. (Closes: #544291)

 -- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>  Wed, 26 Aug 2009 14:20:56 -0500

python-numpy (1:1.3.0-2) unstable; urgency=low

  [ Kumar Appaiah ]
  * Fix endianness detection. Closes: #543538.

  [ Matthias Klose ]
  * Do not directly depend on the versioned python2.x packages, but
    keep the versioned interpreter names in the f2py2.x scripts. If these
    are needed with this dependency, then we need a new python-numpy-f2py
    package, for build requirements, a build-dependency on python-all-dev
    should be enough. Closes: #543456.

 -- Matthias Klose <doko@debian.org>  Wed, 26 Aug 2009 16:55:33 +0200

python-numpy (1:1.3.0-1) unstable; urgency=low

  [ Kumar Appaiah ]
  * New upstream release.
    + Fix memory leak in exponentiation. (Closes: #505999)
  * debian/rules:
    + Use quilt instead of simple-patchsys.
    + Add sed magic to fix the f2py2.4 and f2py2.5
      to use the right interpreters.
    + debian/patches:
      - 01_fix_man_hyphens.patch: Removed; merged upstream.
      - 03_force_f2py_version.patch: Add to force generation
        f2py postfixed with interpreter version.
      - 04_fix_utils_deprecated.patch: Fix incorrect comma
        in utils.py. Patch from Yaroslav Halchenko (Closes: #519580)
  * debian/control:
    + Standards version is now 3.8.2 (no changes needed).
    + Remove myself from uploaders.

  [ Matthias Klose ]
  * Add debian/README.source.
  * Bump standards version to 3.8.3.
  * Fix section of the -dbg package.

 -- Matthias Klose <doko@debian.org>  Mon, 24 Aug 2009 22:38:50 +0200

python-numpy (1:1.2.1-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix FTBFS caused by “/usr/bin/f2py” no longer being available, leading
    to an impossible rename (Closes: #521525).

 -- Cyril Brulebois <kibi@debian.org>  Fri, 03 Jul 2009 11:13:31 +0200

python-numpy (1:1.2.1-1) unstable; urgency=low

  [ David Cournapeau ]
  * Force numpy to build without ATLAS support, so that no explicit linking
    against ATLAS is done, even when it is installed on the build machine
  * Remove build-conflicts on any atlas-related package
  * Remove build dependency on libfftw3-dev
  * Numpy 1.2 requires python 2.4 or above
  * Add python-nose to Suggests section, since numpy test suite depends on it

  [ Ondrej Certik ]
  * New upstream release
  * ${misc:Depends} added to all binary packages to fix lintian warnings
  * debian/rules: get-orig-source added, to repackage upstream
    sources and add there a missing doc/ directory from the upstream svn (after
    talking with upstream, they suggested to wait for a new numpy release, that
    will also fix the doc/ bug

 -- Ondrej Certik <ondrej@certik.cz>  Thu, 19 Feb 2009 08:47:20 -0800

python-numpy (1:1.1.1-2) unstable; urgency=low

  [ Ondrej Certik ]
  * Added a missing slash in debian/python-numpy.links, thanks so much to
  Sergio Gelato <Sergio.Gelato@astro.su.se> for doing the real work (Closes:
  #499613)

  [ Sandro Tosi ]
  * debian/control
    - switch Vcs-Browser field to viewsvn

 -- Ondrej Certik <ondrej@certik.cz>  Sat, 20 Sep 2008 16:31:23 +0200

python-numpy (1:1.1.1-1) unstable; urgency=low

  * New upstream release
  * quilt added to build-depends

 -- Ondrej Certik <ondrej@certik.cz>  Sun, 17 Aug 2008 21:03:12 +0200

python-numpy (1:1.1.0-3) unstable; urgency=low

  [ Riku Voipio ]
  * debian/control: atlas is not available on armel, and after a quick look
    neither on alpha. I'd also suggest dropping
    libatlas-sse-dev|libatlas-sse2-dev|libatlas-3dnow-dev alternative combo
    away, these are potentially dangerous on buildd's. Ondrej: dropped.
    (Closes: #489568)

  [ Tiziano Zito ]
  * patch: build _dotblas.c when ATLAS is not installed, build-conflict with
    atlas, build-depend on blas+lapack only, as it used to be (Closes: #489726)

  [ Carlos Galisteo ]
  * debian/control
    - Added Homepage field.

  [ Ondrej Certik ]
  * Checked the package on i386 and amd64, both with and without atlas, all
    tests run and the numpy package is faster if atlas is around.

 -- Ondrej Certik <ondrej@certik.cz>  Tue, 08 Jul 2008 15:08:16 +0200

python-numpy (1:1.1.0-2) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/rules:
    - Also install Numpy documentation in python-numpy-doc (Closes: #486329)
  * debian/control:
    - Update python-numpy-doc's long description to mention that it also
      contains Numpy documentation.

  [ Tiziano Zito ]
  * debian/control, debian/patches/: enable ATLAS support (Closes: #489253)

 -- Ondrej Certik <ondrej@certik.cz>  Sun, 06 Jul 2008 18:28:29 +0200

python-numpy (1:1.1.0-1) unstable; urgency=low

  [ Ondrej Certik ]
  * New upstream release.
  * debian/patches/03_histogram_fix.diff removed, as it is now applied upstream
  * Standards-Version bumped to 3.8.0 (no changes needed)

  [ Andrew Straw ]
  * Install new numpy.ma subpackage

 -- Ondrej Certik <ondrej@certik.cz>  Mon, 09 Jun 2008 17:02:31 +0200

python-numpy (1:1.0.4-8) unstable; urgency=medium

  [ Kumar Appaiah ]
  * debian/rules:
    + Add the --single-version-externally-managed flag.
  * debian/patches/03_histogram_fix.diff:
    + Patch from Manuel Metz to fix numpy.histogram. (Closes: #470293)
  * debian/python-numpy.install:
    + Install the egg-info file. (Closes: #477243)
  * debian/control:
    + Update Kumar Appaiah's e-mail address to the debian.org
      address.

  [ Chris AtLee ]
  * debian/control
    + Update description to clarify relationship between numpy and
      python-(numarray|numeric).

  [ Kumar Appaiah ]
  * debian/rules: Fix symlinks for include file location change
    due to pycentral modification. (Closes: #478496)

 -- Ondrej Certik <ondrej@certik.cz>  Wed, 30 Apr 2008 13:52:37 +0200

python-numpy (1:1.0.4-7) unstable; urgency=low

  * Sync from ubuntu (Closes: #470698).
    - Applied all ubuntu changes, except ubuntu's specific from debian/control
  * debian/pyversions removed as it is not necessary now

 -- Ondrej Certik <ondrej@certik.cz>  Thu, 13 Mar 2008 00:42:09 +0100

python-numpy (1:1.0.4-6ubuntu1) hardy; urgency=low

  * Sync from debian unstable.
    - All existing Ubuntu changes are now in Debian.
  * debian/rules: Unset LDFLAGS, as numpy's distutils is braindead and FTBFS.
    (LP: #199031)
  * debian/python-numpy.links: Reference /usr/share/pyshared, rather than the
    old python-central-specific directory.
  * debian/control: Comply with DebianMaintainerField.

 -- William Grant <william.grant@ubuntu.org.au>  Sat, 08 Mar 2008 12:56:12 +1100

python-numpy (1:1.0.4-6) unstable; urgency=low

  [ Kumar Appaiah ]
  * Remove unnecessary README.numpy-dbg.
  * debian/control:
    + Build using gfortran, libblas-dev, liblapack-dev. (Closes: #464784)
    + Conflict with python-scipy (<= 0.6.0-6), python-matplotlib (<< 0.90.1-3),
      built with g77.
    + Add build-conflict with atlas3-base-dev.
    + Build again using python-central as done up to version 1:1.0.4-2.
    + Spell python with small `p', as per new description norms.
  * debian/rules:
    + Add proper symlinks in /usr/include/python<version>/numpy
      for numpy headers.
    + Include symlinks for debug package.
  * debian/python-numpy.links:
    + Symlink old numarray headers to numpy include directory.
      (Closes: #463007)
  * debian/copyright:
    + Fix by adding copyright date and symbol.

  [ Ondrej Certik ]
  * Package description update: python -> Python (fixes a lintian warning)

 -- Ondrej Certik <ondrej@certik.cz>  Wed, 20 Feb 2008 15:06:55 +0100

python-numpy (1:1.0.4-5) unstable; urgency=low

  [ Kumar Appaiah ]
  * debian/control:
    + Change fftw3-dev build dependency to
      libfftw3-dev. (Closes: #458235)

  [ Sandro Tosi ]
  * debian/control
    - uniforming both Vcs-Svn and Vcs-Browser fields

  [ Kumar Appaiah ]
  * debian/rules:
    + Don't remove /usr/share/python-support/python-numpy-dbg, even
      though it is empty, to prevent python-numpy-dbg
      from becoming uninstallable.
    + Add a README.numpy-dbg to explain the emptiness of
      /usr/share/python-support/python-numpy-dbg.

 -- Kumar Appaiah <akumar@ee.iitm.ac.in>  Sun, 06 Jan 2008 07:36:20 +0530

python-numpy (1:1.0.4-4) unstable; urgency=medium

  * debian/patches:
    + 02_dontuse_lapack.diff: Patch system_info.py not to look for
      Atlas, as we want to build against the reference BLAS and
      LAPACK (refblas3-dev and lapack3-dev) even when Atlas is around.
      (Closes: #448530, #457329)
  * debian/python-numpy.links:
    + Symlink the numpy include directory to appear in
      /usr/include/numpy to adhere to the FHS. (Closes: #457060).
  * debian/control:
    + Set python-numpy-doc and python-numpy-ext to Architecture: all.
    + Don't call dh_python for python-numpy-ext.
  * debian/TODO*:
    + Not relevant, as all issues have been taken care of.

 -- Kumar Appaiah <akumar@ee.iitm.ac.in>  Sat, 22 Dec 2007 22:19:32 +0530

python-numpy (1:1.0.4-3) unstable; urgency=low

  [ Kumar Appaiah ]
  * debian/pyversions: Build for Python 2.4 onwards.
  * debian/control:
    + Update Standards Version to 3.7.3. (No changes needed)
    + Move to python-support. Update Build-Depends.
    + {XS,XB}-Python-Versions no longer required.
  * debian/changelog:
    + Replace pycentral with pysupport.

  [ Ondrej Certik ]
  * debian/pycompat removed

 -- Ondrej Certik <ondrej@certik.cz>  Mon, 17 Dec 2007 17:26:57 +0100

python-numpy (1:1.0.4-2) unstable; urgency=low

  * DM-Upload-Allowed changed to XS-DM-Upload-Allowed
  * Removed build-conflicts, since the package builds without them and it
    fails to build on buildbots with them

 -- Ondrej Certik <ondrej@certik.cz>  Tue, 04 Dec 2007 22:26:52 +0100

python-numpy (1:1.0.4-1) unstable; urgency=low

  [ Kumar Appaiah ]
  * New upstream release.
  * debian/control:
    + Don't build python-numpy-dev. Make python-numpy provide it.
    + Add Conflicts to all packages to python-numpy and
      provide python-f2py.
  * debian/rules:
    + Don't use pycentral's nomove.
    + Move f2py manpage installation to python-numpy.
  * debian/python-numpy.install:
    + Merge back the python-f2py.install files.
  * debian/python-numpy.manpages:
    + Move f2py manpage to python-numpy.

  [ Ondrej Certik ]
  * Changed maintainer from deb-scipy to DPMT, removed deb-scipy from
    Uploaders
  * Kumar Appaiah added into Uploaders.
  * Short description improved to use NumPy instead of the old Numerical Python

 -- Ondrej Certik <ondrej@certik.cz>  Tue, 04 Dec 2007 15:38:59 +0100

python-numpy (1:1.0.3-2) unstable; urgency=low

  [ Ondrej Certik ]
  [Jonas Smedegaard]
  * Fix installing both versioned and unversioned f2py (Closes: 450443)

  [Ondrej Certik]
  * Added DPMT and Ondrej Certik to Uploaders field
  * XS-Vcs-Svn and XS-Vcs-Browser fields added

  [ Fabio Tranchitella ]
  * Add DM-Upload-Allowed: yes

  [ Kumar Appaiah ]
  * debian/control:
    + Move XS-Vcs-* to Vcs-*, as dpkg supports them now.
    + Move ${Source-Version} to ${binary:Version}
    + Move python-numpy-doc to section doc.
    + Alter -dbg package description, shorten it.
    + Split -ext package description to two lines.
  * debian/rules:
    + Symlink the f2py man page for f2py$(PYVER)-dbg as well.
    + Remove DEB_TAR_SRCDIR.
  * debian/patches:
    + Add 01_fix_man_hyphens.patch to fix hyphens in f2py.1.
  * debian/watch: Added.

 -- Ondrej Certik <ondrej@certik.cz>  Fri, 30 Nov 2007 12:27:18 +0100

python-numpy (1:1.0.3-1) unstable; urgency=low

  * New upstream version.
  * Merge from Ubuntu:
    - Build the extension for the python debug interpreter.
    - Bump debian/compat to 5.

 -- Matthias Klose <doko@debian.org>  Thu, 24 May 2007 08:54:44 +0200

python-numpy (1:1.0.2-3) unstable; urgency=low

  * rebuilt in an unstable environment (Closes: 423633)

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu, 17 May 2007 14:13:25 +0100

python-numpy (1:1.0.2-2) unstable; urgency=low

  * Built with new debian-defaults (support python 2.5) (Closes: 414975)

 -- Marco Presi (Zufus) <zufus@debian.org>  Wed,  9 May 2007 09:22:05 +0100

python-numpy (1:1.0.2-1) experimental; urgency=low

  * New upstream version
  * Due to another ABI change, I added a conflict on packages that require a binary NMU

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 21 Apr 2007 17:34:45 +0100

python-numpy (1:1.0.1-8) unstable; urgency=low

  * Upload to unstable

 -- Marco Presi (Zufus) <zufus@debian.org>  Wed, 14 Mar 2007 13:40:05 +0000

python-numpy (1:1.0.1-7) experimental; urgency=low

  * Removed circular dependencies between pyhton-numpy and
    python-numpy-dev (Closes: 413160)

 -- Marco Presi (Zufus) <zufus@debian.org>  Tue,  6 Mar 2007 07:23:20 +0000

python-numpy (1:1.0.1-6) experimental; urgency=low

  * Build depends on gfortran instead of g77

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu,  1 Mar 2007 00:51:50 +0000

python-numpy (1:1.0.1-5) unstable; urgency=low

  * Upload in unstable.

 -- Marco Presi (Zufus) <zufus@debian.org>  Mon, 26 Feb 2007 00:41:08 +0000

python-numpy (1:1.0.1-4) experimental; urgency=low

  * Re-added fftw3-dev as Build-Dep.

 -- Marco Presi (Zufus) <zufus@debian.org>  Mon, 19 Feb 2007 15:50:36 +0000

python-numpy (1:1.0.1-3) unstable; urgency=low

  * Moved f2py files back in python-numpy;
    python-numpy to depend on python-numpy-dev (closes: #410944)

 -- Marco Presi (Zufus) <zufus@debian.org>  Mon, 19 Feb 2007 02:01:10 +0000

python-numpy (1:1.0.1-2) unstable; urgency=medium

  * Fix memory error in polymul. Closes: #410757.
  * Install additional f2py files. Closes: #410067.

 -- Matthias Klose <doko@debian.org>  Wed, 14 Feb 2007 02:41:15 +0100

python-numpy (1:1.0.1-1) unstable; urgency=medium

  * Merge python-numpy-ext with python-numpy; make python-numpy-ext
    an empty transitional package.

 -- Matthias Klose <doko@debian.org>  Sun,  7 Jan 2007 10:14:30 +0000

python-numpy (1:1.0.1-0) experimental; urgency=low

  * New upstream release (final release).
  * Update conflicts with scipy (<< 0.5.2) and matplotlib (<< 0.87.7).
  * Remove redundant (build-)dependencies.

 -- Matthias Klose <doko@debian.org>  Wed,  3 Jan 2007 22:15:27 +0100

python-numpy (1:1.0rc1-1) unstable; urgency=low

  * New upstream release

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 23 Sep 2006 21:13:18 +0200

python-numpy (1:1.0b5-1) unstable; urgency=low

  * New upstream release
  * Added conflict with scipy (<=0.5.0) and matplotlib (<=0.87.4)

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu,  7 Sep 2006 00:18:41 +0200

python-numpy (1:1.0b4-1) unstable; urgency=low

  * New upstream release

 -- Marco Presi (Zufus) <zufus@debian.org>  Tue, 29 Aug 2006 22:51:32 +0200

python-numpy (1:1.0b2-1) unstable; urgency=low

  * New upstream release

 -- Marco Presi (Zufus) <zufus@debian.org>  Fri, 18 Aug 2006 00:01:21 +0200

python-numpy (1:1.0b1-1) unstable; urgency=low

  * New upstream release
  * Added numarray and oldnumeric to python-numpy

 -- Marco Presi (Zufus) <zufus@debian.org>  Sun, 30 Jul 2006 00:50:55 +0200

python-numpy (1:0.9.8-3) unstable; urgency=low

  * Applied patch from Matthias Klose <doko@ubuntu.com> providing the following:
  * debian/rules:
    - Don't hardcode any python versions.
    - Work around a cdbs bug not calling dh_py* for the -ext package.
    - python-numpy: Add an unversioned f2py script.
  * debian/control:
    - python-numpy-ext: Add Provides, tighten dependency on python-numpy.
  * debian/*.install: Don't hardcode any python versions.

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 29 Jul 2006 23:55:06 +0200

python-numpy (1:0.9.8-2) unstable; urgency=low

  * Build-deps: removed atlas2 (José Fonseca <j_r_fonseca@yahoo.co.uk>).
  * Maintainer field updated to Debian Scipy Team.
  * Update to new python policy.

 -- Marco Presi (Zufus) <zufus@debian.org>  Wed,  5 Jul 2006 12:07:29 +0200

python-numpy (1:0.9.8-1) experimental; urgency=low

  * New upstream version

 -- Marco Presi (Zufus) <zufus@debian.org>  Mon,  3 Jul 2006 16:19:17 +0200

python-numpy (1:0.9.5-4) experimental; urgency=low

  * Added numpy/f2py/src

 -- José Fonseca <j_r_fonseca@yahoo.co.uk>  Sat, 25 Feb 2006 22:59:07 +0000

python-numpy (1:0.9.5-3) experimental; urgency=low

  * Added distutils

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 25 Feb 2006 17:32:06 +0100

python-numpy (1:0.9.5-2) experimental; urgency=low

  * Fixed pyhton-f2py and -doc building
  * Added epoch version to make f2py upgradeable

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 25 Feb 2006 16:46:02 +0100

python-numpy (1:0.9.5-1) unstable; urgency=low

  * New upstream release

 -- Marco Presi (Zufus) <zufus@debian.org>  Sun, 19 Feb 2006 15:01:33 +0100

python-numpy (0.9.4-2) unstable; urgency=low

  * Package splitting as suggested by Matthias Klose <doko@debian.org>:
    python2.x-f2py
    python-f2py-doc
    python2.x-numpy
    python2.x-numpy-extra

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu, 16 Feb 2006 03:57:01 +0100

python-numpy (0.9.4-1) unstable; urgency=low

  * Initial release Closes.

 -- Marco Presi (Zufus) <zufus@debian.org>  Tue, 14 Feb 2006 00:40:53 +0100