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
|
scipy (1.6.0-2) unstable; urgency=medium
* Team upload.
* upload new upstream version to unstable
-- Drew Parsons <dparsons@debian.org> Sat, 16 Jan 2021 23:26:56 +1100
scipy (1.6.0-1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Standards-Version: 4.5.1
* drop debian/python3-scipy.docs: Thanks.txt no longer shipped.
* update debian/copyright for new features
- benchmarks/benchmarks/go_benchmark_functions/*.py
Copyright: 2013 Andrea Gavana <andrea.gavana@gmail.com>
License: expat
- scipy/fft/_pocketfft/pocketfft.cxx
Copyright: 2010-2019 Max-Planck-Society, Martin Reinecke
2019 Peter Bell. License: BSD-3-clause
- scipy/fft/_pocketfft/pocketfft_hdronly.h
Copyright: 2010-2019 Max-Planck-Society, Martin Reinecke
2019 Peter Bell, 2003,2007-2014 Matteo Frigo,
Massachusetts Institute of Technology. License: BSD-3-clause
- scipy/optimize/_highs/*
Copyright: 2020 ERGO-Code
License: Expat
- scipy/sparse/csgraph/_matching.pyx
Copyright: 1987, A. Volgenant/Amsterdam School of Economics,
University of Amsterdam. License: BSD-3-clause
- scipy/_lib/uarray/*
Copyright: 2018, Quansight-Labs
License: BSD-3-clause
-- Drew Parsons <dparsons@debian.org> Wed, 06 Jan 2021 19:57:43 +1100
scipy (1.5.4-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Drew Parsons <dparsons@debian.org> Sat, 14 Nov 2020 13:36:06 +0800
scipy (1.5.3-2) unstable; urgency=medium
* Team upload.
* push new upstream release to unstable
-- Drew Parsons <dparsons@debian.org> Thu, 05 Nov 2020 03:33:52 +0800
scipy (1.5.3-1) experimental; urgency=medium
* Team upload.
[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
[ Drew Parsons ]
* New upstream release.
-- Drew Parsons <dparsons@debian.org> Tue, 03 Nov 2020 13:32:21 +0800
scipy (1.5.2-2) unstable; urgency=medium
* Team upload.
* debian/tests (autopkgtest): add a new test case using BLAS=libblis3
-- Drew Parsons <dparsons@debian.org> Sat, 01 Aug 2020 12:49:57 +0800
scipy (1.5.2-1) experimental; urgency=medium
* Team upload.
* New upstream release.
- update versioned Build-Depends: cython3 (>= 0.29.18),
python3-numpy (>= 1:1.14.5), python3-pybind11 (>= 2.4.3)
- builds with gfortran 10. Closes: #957780.
* debhelper compatibility level 13
-- Drew Parsons <dparsons@debian.org> Fri, 24 Jul 2020 15:17:18 +0800
scipy (1.4.1-2) unstable; urgency=medium
* Team upload.
* bring new upstream version to unstable
-- Drew Parsons <dparsons@debian.org> Sat, 18 Apr 2020 11:08:42 +0800
scipy (1.4.1-1) experimental; urgency=medium
* Team upload.
* New upstream release.
- applies debian patches fix_custom_sampling_input_2b3ed61.patch
and fix_test_NAN_input_iv_7806757.diff
- deprecates debian patch use_local_objects.inv.patch
- Build-Depends: python3-pybind11 (>= 2.4.0)
- Build-Depends-Indep: python3-sphinx (>= 2~)
* provide PYTHONPATH as env variable with make doc
* Standards-Version: 4.5.0
-- Drew Parsons <dparsons@debian.org> Fri, 17 Apr 2020 01:11:18 +0800
scipy (1.3.3-3) unstable; urgency=medium
* Team upload.
* skip sparsetools.TestInt32Overflow tests test_bsr_1_block and
test_bsr_n_block (they regularly timeout)
-- Drew Parsons <dparsons@debian.org> Fri, 06 Dec 2019 10:22:05 +0800
scipy (1.3.3-2) unstable; urgency=medium
* Team upload.
* add debian patches to avoid internet connections when using docs
- css_font_OpenSans.patch adapts font settings from
https://fonts.googleapis.com/css?family=Open+Sans
(Apache 2.0 licence)
- css_font_local.patch uses local font_OpenSans.css from
css_font_OpenSans.patch
- python-scipy-doc Depends: fonts-open-sans
- Closes: #873433.
* debian patch fix_custom_sampling_input_2b3ed61.patch applies
upstream commit 2b3ed61 to fix syntax. Closes: #945093.
-- Drew Parsons <dparsons@debian.org> Thu, 05 Dec 2019 00:30:25 +0800
scipy (1.3.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* change source package name to scipy for python3-only, to
distinguish from python-scipy which supports python2.
* update Vcs salsa repo name to scipy (from python-scipy)
-- Drew Parsons <dparsons@debian.org> Wed, 27 Nov 2019 20:53:58 +0800
python-scipy (1.3.1-1exp3) experimental; urgency=medium
* Team upload.
* update versioned Build-Depends: python3-numpy (>= 1:1.13.3)
and cython3 (>= 0.29.2)
* Patch fix_test_NAN_input_iv_7806757.diff applies upstream commit
7806757 to fix tests on hppa, riscv64, sparc64. Closes: #934806.
-- Drew Parsons <dparsons@debian.org> Fri, 16 Aug 2019 13:20:27 +0800
python-scipy (1.3.1-1exp2) experimental; urgency=medium
* Team upload.
* build binaries before building docs
-- Drew Parsons <dparsons@debian.org> Tue, 13 Aug 2019 18:45:38 +0800
python-scipy (1.3.1-1exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
- drops support for Python 2 (python-scipy is no longer provided)
- applies patches
matrix_API_614847c5.patch
matrix_API_filter_check_87e48c3c5.patch
matrix_API_more_e0cfa29e2.patch
fix_test_optim_canonical_constraint_2d7e7e8c.patch
* adjust skipping of spatial tests according to context of test
(openblas,atlas specify scipy.spatial)
-- Drew Parsons <dparsons@debian.org> Tue, 13 Aug 2019 15:04:07 +0800
python-scipy (1.2.2-8) unstable; urgency=medium
* Team upload.
[ Ondřej Nový ]
* Bump Standards-Version to 4.4.1.
[ Drew Parsons ]
* only build docs for default python3. Closes: #942794.
- apply dh_auto_install to arch-dependent packages only
-- Drew Parsons <dparsons@debian.org> Tue, 19 Nov 2019 02:32:19 +0800
python-scipy (1.2.2-7) unstable; urgency=medium
* Team upload.
* Patch fix_test_NAN_input_iv_7806757.diff applies upstream commit
7806757 to fix tests on mipsel, hppa, riscv64, sparc64
(taken from 1.3.1-1exp3)
-- Drew Parsons <dparsons@debian.org> Sun, 25 Aug 2019 20:37:32 +0800
python-scipy (1.2.2-6) unstable; urgency=medium
* Team upload.
* atlas, openblas tests Depends: python3
-- Drew Parsons <dparsons@debian.org> Sun, 25 Aug 2019 01:47:34 +0800
python-scipy (1.2.2-5) unstable; urgency=medium
* Team upload.
* adjust skipping of sparse and spatial tests according to context
of test (openblas and atlas specify scipy.sparse, scipy.spatial)
* run atlas and openblas tests with python3 not python2
-- Drew Parsons <dparsons@debian.org> Sat, 24 Aug 2019 11:42:02 +0800
python-scipy (1.2.2-4) unstable; urgency=medium
* Team upload.
* debian patch Use-system-LBFGSB.patch:
run test_minimize_l_bfgs_maxls with rtol=1e-5
-- Drew Parsons <dparsons@debian.org> Tue, 30 Jul 2019 09:28:55 +0800
python-scipy (1.2.2-3) unstable; urgency=medium
* Team upload.
* run build-time tests over all versions of python3
* Build-Depends: liblbfgsb-dev and add Debian patch
Use-system-LBFGSB.patch to use the system L-BFGS-B library (which
uses LAPACK rather than the scipy-bundled LINPACK)
Enables test_minimize_l_bfgs_maxls in scipy.optimize to succeed.
Thanks Gard Spreemann. Closes: #778635.
-- Drew Parsons <dparsons@debian.org> Tue, 30 Jul 2019 00:26:20 +0800
python-scipy (1.2.2-2) unstable; urgency=medium
* Team upload.
* debhelper compatibility level 12
- run configure build step through pybuild to get consistent
build directories
- set PYLIBPATH to pybuild build directory
* debian/rules: use AUTOPKGTEST_TMP instead of ADTTMP to run tests
* v1.2.2 fixes indexing in fftpack. Closes: #924396.
* drop ignore_DeprecationWarning_diff1.2.patch (already applied in
scipy 1.2)
* Register docs with doc-base. Closes: #846253.
* debian/tests/python3: skip tests of
scipy.spatial.tests.test__plotutils.TestPlotting
(see https://github.com/scipy/scipy/issues/9946)
-- Drew Parsons <dparsons@debian.org> Mon, 29 Jul 2019 18:43:34 +0800
python-scipy (1.2.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* configure debian/watch to grab tar.xz rather than tar.gz
(for smaller tarballs)
* debian/rules: build with dh --buildsystem=pybuild
* Standards-Version: 4.4.0
-- Drew Parsons <dparsons@debian.org> Fri, 26 Jul 2019 15:22:36 +0800
python-scipy (1.2.1-1exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Drew Parsons <dparsons@debian.org> Thu, 28 Feb 2019 11:16:38 +0800
python-scipy (1.2.0-1) experimental; urgency=medium
* New upstream release
-- Julian Taylor <jtaylor.debian@googlemail.com> Tue, 15 Jan 2019 12:27:45 +0100
python-scipy (1.1.0-7) unstable; urgency=medium
* Team upload.
* Patch fix_test_optim_canonical~onstraint_2d7e7e8c.patch applies
upstream patch 2d7e7e8 to fix occasional random failures in
test_canonical_constraint.test_concatenation.
-- Drew Parsons <dparsons@debian.org> Fri, 12 Apr 2019 00:46:35 +0800
python-scipy (1.1.0-6) unstable; urgency=medium
* Team upload.
* skip sparsetools.TestInt32Overflow matvec tests on python3 also.
-- Drew Parsons <dparsons@debian.org> Thu, 11 Apr 2019 09:38:17 +0800
python-scipy (1.1.0-5) unstable; urgency=medium
* Team upload.
* Skip sparsetools.TestInt32Overflow matvec tests on python2
(MemoryError). Closes: #919929.
-- Drew Parsons <dparsons@debian.org> Wed, 10 Apr 2019 16:41:47 +0800
python-scipy (1.1.0-4) unstable; urgency=medium
* Team upload.
* Replace patch ignore_DeprecationWarning_diff1.2.patch with
matrix_API_614847c5.patch
matrix_API_filter_check_87e48c3c5.patch
matrix_API_more_e0cfa29e2.patch
adapting the indicated upstream commits to scipy 1.1.0
(use numpy.matmul instead of @ for matrix multiplication, since @
is not available in python2)
Removes sources of matrix DeprecationWarnings.
Addresses: Bug#919929.
-- Drew Parsons <dparsons@debian.org> Thu, 14 Mar 2019 14:12:00 +0800
python-scipy (1.1.0-3) unstable; urgency=medium
* Team upload.
* Debian patch ignore_DeprecationWarning_diff1.2.patch applies diff
of pytest.ini between scipy 1.1 and 1.2 to ignore
DeprecationWarnings from numpy 1.16. Addresses Bug#919929.
* Use default gfortran-8 on s390x. unroll-loops was fixed in
gcc-8 8.2.0-18. Closes: #906198, #915738.
-- Drew Parsons <dparsons@debian.org> Fri, 08 Mar 2019 00:31:29 +0800
python-scipy (1.1.0-2) unstable; urgency=medium
* Team upload.
* Remove Alexandre Fayolle from the Uploaders list. Thanks for your
previous contributions! Closes: #833329
* Use gfortran-7 on s390x to work around a regression causing the imexam
test suite to fail when scipy is built with gfortran 8. Addresses: #906198
* Add some Multi-Arch markers suggested by the m-a hinter.
-- Mattia Rizzolo <mattia@debian.org> Sun, 04 Nov 2018 19:01:19 +0100
python-scipy (1.1.0-1) unstable; urgency=medium
[ Julian Taylor ]
* New upstream release
Closes: #896060, #901380, #896635
* update to debian/compat 9 and standard 4.1.4
[ Ondřej Nový ]
* d/control: Set Vcs-* to salsa.debian.org
* d/copyright: Use https protocol in Format field
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
-- Julian Taylor <jtaylor.debian@googlemail.com> Sun, 01 Jul 2018 14:34:28 +0200
python-scipy (0.19.1-2) unstable; urgency=medium
* Replace python-imaging recomments with python-pil (Closes: #866468)
* build documentation with python3-sphinx
* Fix atlas and openblas tests for openblas and atlas multiarch locations
Thanks to Matthias Klose for the patch (Closes: #876007)
* Depend on python-all-dbg for autopkgtests
Thanks to Michael Hudson-Doyle for the patch (Closes: #864699)
* bump standard to 4.1.3
- debian/control: replace priority extra with optional
-- Julian Taylor <jtaylor.debian@googlemail.com> Sun, 07 Jan 2018 14:38:57 +0100
python-scipy (0.19.1-1) unstable; urgency=medium
* New upstream release
* weave has been removed, drop its patch blitz++.patch
* drop cap-ld-precision.patch, fixed in numpy
-- Julian Taylor <jtaylor.debian@googlemail.com> Wed, 06 Sep 2017 18:07:38 +0200
python-scipy (0.18.1-2.1) unstable; urgency=high
* Non-maintainer upload.
* No-change rebuild to build without _PyFPE symbols.
-- Matthias Klose <doko@ubuntu.com> Tue, 05 Sep 2017 16:36:34 +0200
python-scipy (0.18.1-2) unstable; urgency=medium
* fix dbg package import (Closes: #840264)
* add dbg package import adt tests
-- Julian Taylor <jtaylor.debian@googlemail.com> Fri, 21 Oct 2016 16:10:57 +0200
python-scipy (0.18.1-1) unstable; urgency=medium
[ Julian Taylor ]
* New upstream bugfix release
[ Sebastian Humenda ]
* make the build-indep target execute the build target to allow the usage of
the module for generating the documentation (Closes: #806867)
-- Julian Taylor <jtaylor.debian@googlemail.com> Sun, 25 Sep 2016 11:25:21 +0200
python-scipy (0.18.0-1) unstable; urgency=medium
* New upstream release
* add python-setuptools to build depends
-- Julian Taylor <jtaylor.debian@googlemail.com> Sat, 30 Jul 2016 19:05:17 +0200
python-scipy (0.17.1-1) unstable; urgency=medium
[ Julian Taylor ]
* New upstream bugfix release
* enable parallel build based on DEB_BUILD_OPTIONS
* bump standard to 3.9.7, no changes required
[ Ondřej Nový ]
* Fixed VCS URL (https)
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 23 May 2016 20:02:14 +0200
python-scipy (0.17.0-1) unstable; urgency=medium
* New upstream release
-- Julian Taylor <jtaylor.debian@googlemail.com> Sat, 23 Jan 2016 20:39:44 +0100
python-scipy (0.16.1-1) unstable; urgency=medium
* New upstream bugfix release
* update adt-tests to new layout
* remove duplicate files in -doc package
-- Julian Taylor <jtaylor.debian@googlemail.com> Sun, 25 Oct 2015 11:51:34 +0100
python-scipy (0.16.0-2) unstable; urgency=medium
[ Julian Taylor ]
* bump cython build-depend to required 0.22
[ Jean-Christophe Jaskula ]
* fix build of documentation in arch only builds
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 24 Aug 2015 09:51:10 +0200
python-scipy (0.16.0-1) unstable; urgency=medium
[ Varun Hiremath ]
* New upstream release
* Bump Standards-Version to 3.9.6
* Remove upstream applied patches:
- fitpack-alias.patch
- fix-undefined-behavior-in-alngam.patch
- relax-bounds-of-interpolate-test.patch
* d/rules: minor build fixes
[ Jean-Christophe Jaskula ]
* Pointed debian/watch to github.com (cleaner sources)
* d/control:
- Added dh_python to B-d
- Removed unnecessary XS-Testsuite field
* Linking to local javascript libraries
- use_local_mathjax.patch
* Using local intersphinx objects
- use_local_objects.patch
* Cleaned debian/copyright
-- Varun Hiremath <varun@debian.org> Sun, 23 Aug 2015 23:01:46 -0400
python-scipy (0.14.1-1) unstable; urgency=medium
* New upstream bugfix release
remove upstream applied patches:
- numpy-version-fix.patch
- numpy_ufunc.patch
- put-_gen-classes-back.patch
- put-back-veccdf.patch
- sparse-fix-omitted-types.patch
- sparse-superlu-fix.patch
* add python-gmpy2 dependency to autopkgtest to speed up mpmath tests
* add suggest on python-scipy-doc (Closes: #760522)
* debian/copyright: add bootstrap Apache 2.0 license
-- Julian Taylor <jtaylor.debian@googlemail.com> Fri, 05 Sep 2014 18:56:54 +0200
python-scipy (0.14.0-2) unstable; urgency=medium
* add patches to fix test failures on i386 and mips:
- fix-undefined-behavior-in-alngam.patch (Closes: #756905)
- relax-bounds-of-interpolate-test.patch
* add patches from 0.14.x maintenance branch:
- sparse-superlu-fix.patch: fix crash
- sparse-fix-omitted-types.patch: fix crash
- put-back-veccdf.patch: restore stats api
- put-_gen-classes-back.patch: restore stats api
- numpy-version-fix.patch: fix wrong version check
- numpy_ufunc.patch: compatibility with numpy 1.9
-- Julian Taylor <jtaylor.debian@googlemail.com> Wed, 27 Aug 2014 14:40:24 +0200
python-scipy (0.14.0-1) unstable; urgency=low
[ Denis Laxalde ]
* Add the documentation binary package (Closes: #600547).
[ Julian Taylor ]
* New upstream release
* drop not swig build dependency and reswig.patch, not needed anymore
* use embedded six, current unstable version not compatible
* fitpack-alias.patch: fix wrong aliasing in interpolate.splder
-- Julian Taylor <jtaylor.debian@googlemail.com> Fri, 23 May 2014 10:37:06 +0200
python-scipy (0.13.3-2) unstable; urgency=medium
* upload to unstable
* add build-essential dependency to adt tests, needed for weave
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 31 Mar 2014 23:32:16 +0200
python-scipy (0.13.3-1) experimental; urgency=low
* New upstream release
* ignore TestSplder.test_kink adt failure, probably numerical error
-- Julian Taylor <jtaylor.debian@googlemail.com> Tue, 04 Feb 2014 19:48:01 +0100
python-scipy (0.13.2-1) experimental; urgency=low
* New upstream release
* update X-Python-Version to >= 2.6
* require python3-numpy (>= 1:1.7.2) for hashing fixes
* bump standard to 3.9.5, no changes required
* bump cython dependency to >= 0.19 to avoid leaks with fused types
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 21 Oct 2013 18:59:29 +0200
python-scipy (0.13.0~b1-1) experimental; urgency=low
[ Julian Taylor ]
* New upstream beta release
* require python-six >= 1.3.0, scipy ships a slightly patched 1.2.0,
version 1.3.0 includes the patches
[ Varun Hiremath ]
* Fix debian/watch file
-- Julian Taylor <jtaylor.debian@googlemail.com> Sat, 07 Sep 2013 18:06:00 +0200
python-scipy (0.12.0-3) unstable; urgency=high
* temporary-directory-usage.patch:
fix insecure temporary directory usage of weave module. (Closes: #726093)
Thanks to Tomas Tomecek for the patch.
-- Julian Taylor <jtaylor.debian@googlemail.com> Tue, 22 Oct 2013 23:44:47 +0200
python-scipy (0.12.0-2) unstable; urgency=low
* ignore testsuite failures to not block python3.3 transition
only masks issues on hardly used ports
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 01 Jul 2013 20:09:40 +0200
python-scipy (0.12.0-1) unstable; urgency=low
[ Julian Taylor ]
* New upstream release, no repackaging required anymore
- Closes: #707315
- Closes: #691254
* also fail on test failures not only test errors
* skip failing test_mio on big endian python3 >= 3.2
* print skipped tests and unused skips in autopkgtest scripts
* add-swig-filetypes.patch, reswig.patch:
reswigging from setup.py, dropped from debian/rules
* cython-wraparound.patch: fix issue in ckdtree.pyx
* qhull-lfs.patch: enable large file support
* cap-ld-precision.patch: fix test failures due to broken np.finfo on ppc
* refresh patches and remove upstream applied:
- BUG-fix-dependency-on-dict-ordering-in-test.patch
- BUG-remove-inline-statement-rejected-by-cython.patch
- fix-dbg-crash.patch
- fix-f2py-dependencies.patch
- fix-test_basic.py-cephes_vs_amos_mass_te.patch
- python3.3-incdir.diff
* Bump standard to 3.9.4, no changes required
* drop unused sharutils build depend and python-profiler from suggests
* use system python-six and python-decorator instead of embedded copies
* don't install setup.py and generator scripts
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
* Remove DM-Upload-Allowed; it's no longer used by the archive
software.
-- Julian Taylor <jtaylor.debian@googlemail.com> Thu, 09 May 2013 11:35:07 +0200
python-scipy (0.11.0+dfsg1-1) experimental; urgency=low
* New upstream release
* bump required cython to >= 0.17
* refresh patches:
- drop upstream applied:
- interpnd-generator.patch
- dtype.diff,
- kolmogorov.diff,
- up_minpack_ints.diff
- kde.diff
- new patches for python3.3 compatibility and test fixing:
- BUG-remove-inline-statement-rejected-by-cython.patch
- BUG-fix-dependency-on-dict-ordering-in-test.patch
- fix-test_basic.py-cephes_vs_amos_mass_te.patch
- python3.3-incdir.diff
- fix-dbg-crash.patch
- fix-f2py-dependencies.patch
* add autopkgtests
* run fast tests during build
* update debian/copyright to dep5
-- Julian Taylor <jtaylor.debian@googlemail.com> Fri, 25 Jan 2013 23:54:43 +0100
python-scipy (0.10.1+dfsg2-1) unstable; urgency=low
* add missing cython and swig sources from git tag (Closes: #589731)
* generate cython c files, requires python-mako and cython build depends
* ensure that all swig files are regenerated
* update debian/orig-tar.sh appropriately
* interpnd-generator.patch: fix the interpnd.pyx generation
-- Julian Taylor <jtaylor.debian@googlemail.com> Thu, 29 Nov 2012 21:56:31 +0100
python-scipy (0.10.1+dfsg1-4) unstable; urgency=low
[ Julian Taylor ]
* use dh_numpy3
- build depend on python3-numpy >= 1:1.6.2~rc1-1~
* debian/rules: remove reference to pyshared
[ Varun Hiremath ]
* debian/patches:
- add dtype.diff (Closes: #682030)
- add up_minpack_ints.diff, thanks to Yaroslav Halchenko (Closes: #681270)
-- Varun Hiremath <varun@debian.org> Sat, 21 Jul 2012 17:23:02 -0400
python-scipy (0.10.1+dfsg1-3) unstable; urgency=low
* wrap-and-sort debian folder
* add python3 packages (Closes: #664785)
* debian/rules:
- split the build into build and install step
- use .install files instead of direct setup.py install
-- Julian Taylor <jtaylor.debian@googlemail.com> Fri, 20 Apr 2012 21:59:33 +0200
python-scipy (0.10.1+dfsg1-2) unstable; urgency=low
* debian/control:
- Recommends: python-imaging (Closes: #648036)
- Recommends: python-dev (Closes: #651760)
* debian/patches:
- Add kolmogorov.diff, thanks to Yaroslav Halchenko (Closes: #653948)
- Add kde.diff (Closes: #648034)
-- Varun Hiremath <varun@debian.org> Fri, 20 Apr 2012 02:37:28 -0400
python-scipy (0.10.1+dfsg1-1) unstable; urgency=low
* New upstream release (Closes: #653262)
* Update debian/orig-tar.sh script
* debian/patches
- updated restore_sys_argv.patch
- removed string_exception.patch, not needed
-- Varun Hiremath <varun@debian.org> Thu, 19 Apr 2012 16:14:28 -0400
python-scipy (0.9.0+dfsg1-1) unstable; urgency=low
* New upstream release (Closes: #614407, #579041, #569008)
* Convert to dh_python2 (Closes: #617028)
-- Varun Hiremath <varun@debian.org> Wed, 06 Apr 2011 21:26:25 -0400
python-scipy (0.8.0+dfsg1-1) experimental; urgency=low
[ Varun Hiremath ]
* New upstream release
* Build-Depend on python-numpy-* (>= 1:1.5.1)
* Update all the debian/patches/*
[ Luca Falavigna ]
* Remove myself from Uploaders.
[ Stefano Rivera ]
* debian/patches/blitz++.patch: Fix scipy.weave.inline compilations. Thanks
to Sameer Morar (Closes: #598520, LP: #302649)
-- Varun Hiremath <varun@debian.org> Fri, 24 Dec 2010 08:20:54 -0500
python-scipy (0.7.2+dfsg1-1) unstable; urgency=low
* Release with a new source tarball with missing cython source files
* debian/rules: Add get-orig-source target
* Add debian/README.source explaining the repackaging of source tarball
* Add debian/orig-tar.sh to add missing cython source files to the
source tarball (Closes: #589731)
* debian/rules: add call to dh_numpy to generate stricter versioned
depends on python-numpy (Closes: #590763)
* Bump Standards-Version to 3.9.1
* Add myself to Uploaders
-- Varun Hiremath <varun@debian.org> Fri, 30 Jul 2010 18:29:18 -0400
python-scipy (0.7.2-2) unstable; urgency=low
* debian/patches/string_exceptions.patch:
- Do not use string exceptions, not supported by Python 2.6.
-- Luca Falavigna <dktrkranz@debian.org> Mon, 07 Jun 2010 14:52:40 +0200
python-scipy (0.7.2-1) unstable; urgency=low
* New upstream release.
* Switch to debhelper 7.
* Provide python-scipy-dbg package (Closes: #525329).
* Add myself to Uploaders.
-- Luca Falavigna <dktrkranz@debian.org> Sun, 25 Apr 2010 17:21:21 +0200
python-scipy (0.7.1-1) unstable; urgency=low
[ Sandro Tosi ]
* debian/control
- removed Marco Presi from uploaders: thanks for your work!
[ Luca Falavigna ]
* New upstream release.
- Fix KeyError exception in sparse module (Closes: #525109).
- Fix SyntaxWarning exception with python2.6 (Closes: #567148).
* debian/patches/restore_sys_argv.patch:
- Restore sys.argv in case of exception (Closes: #500814).
* debian/control:
- Depend on ${misc:Depends}.
- Drop useless Conflicts/Replaces fields.
- Bump Standards-Version to 3.8.4, no changes required.
* debian/README.Debian:
- Remove obsolete information.
* debian/pycompat:
- Remove, useless.
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Mon, 05 Apr 2010 17:10:56 +0200
python-scipy (0.7.0-2) unstable; urgency=medium
[ Julien Lavergne ]
* debian/copyright : Update Copyright holders (Closes: #524131)
* From Ubuntu, prepare for the future python transition:
- debian/rules:
+ Include /usr/share/python/python.mk
+ Add $(py_setup_install_args) to setup.py install
+ Replace site-packages by *-packages
- debian/control:
+ Bump build-depends to python-all-dev (>= 2.5.4-1~)
[ Luca Falavigna ]
* Remove patches, they are no longer needed and also causing FTBFS with
recent python-numpy. Remove quilt machinery too (Closes: #545606).
* debian/copyright: add missing copyright holder (Closes: #540504).
* debian/control: bump Standards-Version to 3.8.3, no changes required.
* debian/watch: fix regex to report correct upstream stable version.
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Tue, 15 Sep 2009 23:30:12 +0200
python-scipy (0.7.0-1) unstable; urgency=low
[ Ondrej Certik ]
* Beta version
* debian/patches: scipy_include_fix.diff and segfault.patch removed (applied
upstream), swig_ftbfs.dpatch and umfpack.dpatch updated to new paths
[ Sandro Tosi ]
* debian/control
- switch Vcs-Browser field to viewsvn
[ David Cournapeau ]
* New upstream version
* Remove obsolete dependencies on libfftw3-dev, libx11-dev and libnetcdf-dev
* Update version for numpy dependency: scipy requires version >= 1.2.0
* Set ATLAS to None when building scipy to avoid depending on ATLAS API, and
only use BLAS/LAPACK public API, even when ATLAS is installed on the build
machine
-- Ondrej Certik <ondrej@certik.cz> Sun, 08 Mar 2009 18:47:03 -0700
python-scipy (0.6.0-12) unstable; urgency=low
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev
-- Ondrej Certik <ondrej@certik.cz> Mon, 16 Jun 2008 22:58:01 +0200
python-scipy (0.6.0-11.1) unstable; urgency=low
* Non-maintainer upload.
* Change description to refer to python-numpy package instead of Numeric
to avoid confusion with python-numeric package.
-- Chris AtLee <chris@atlee.ca> Wed, 23 Apr 2008 15:45:22 -0400
python-scipy (0.6.0-11) unstable; urgency=low
* Fixes FTBFS, by unexporting LDFLAGS and setting FFLAGS directly, the same
hack as in numpy (Closes: #475990)
-- Ondrej Certik <ondrej@certik.cz> Mon, 14 Apr 2008 14:53:57 +0200
python-scipy (0.6.0-10) unstable; urgency=low
[Sandro Tosi]
* Fixes a dangling symlink (Closes: #471825)
-- Ondrej Certik <ondrej@certik.cz> Thu, 20 Mar 2008 14:50:31 +0100
python-scipy (0.6.0-9) unstable; urgency=medium
* Uses correct pycentral locations (Closes: #471549)
-- Ondrej Certik <ondrej@certik.cz> Wed, 19 Mar 2008 21:41:12 +0100
python-scipy (0.6.0-8) unstable; urgency=low
* Build depend on libsuitesparse (>= 3.1.0-3)
* Build depends fixed to use gfortran based lapack and blas (Closes: #466868)
-- Ondrej Certik <ondrej@certik.cz> Sat, 23 Feb 2008 01:21:51 +0100
python-scipy (0.6.0-7) unstable; urgency=low
* Bumped the version, because python-numpy conflicts with python-scipy (<=
0.6.0-6). This compiles against the old suitesparse, but it makes the
package installable and working again.
-- Ondrej Certik <ondrej@certik.cz> Thu, 21 Feb 2008 15:38:00 +0100
python-scipy (0.6.0-6) UNRELEASED; urgency=low
* debian/control
- uniforming both Vcs-Svn and Vcs-Browser fields
-- Sandro Tosi <matrixhasu@gmail.com> Thu, 03 Jan 2008 12:18:46 +0100
python-scipy (0.6.0-5.1) unstable; urgency=low
* Non-maintainer upload.
* Changed `fftw3-dev' to `libfftw3-dev' to get rid of that dependency
on a virtual package.
* Fix FTBFS with relation to swig with a patch provided by
Kumar Appaiah (Closes: #456892)
-- Philipp Kern <pkern@debian.org> Mon, 31 Dec 2007 13:45:10 +0100
python-scipy (0.6.0-5) unstable; urgency=low
* DM-Upload-Allowed changed to XS-DM-Upload-Allowed
* standards-version made uptodate (3.7.3)
* don't create an empty dir usr/share/doc/python-scipy/weave/
-- Ondrej Certik <ondrej@certik.cz> Tue, 04 Dec 2007 22:27:48 +0100
python-scipy (0.6.0-4) unstable; urgency=low
* Use quilt (much eaiser to use) instead of dpatch
* Paul's patch added (Closes: #452991)
* Add DM-Upload-Allowed: yes
-- Ondrej Certik <ondrej@certik.cz> Mon, 03 Dec 2007 15:33:24 +0100
python-scipy (0.6.0-3) unstable; urgency=low
[ Piotr Ożarowski ]
* Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now)
[ Ondrej Certik ]
* Depending on libsuitesparse-dev directly instead of libufsparse-dev
(Closes: #445771)
-- Ondrej Certik <ondrej@certik.cz> Mon, 15 Oct 2007 20:09:07 +0200
python-scipy (0.6.0-2) unstable; urgency=medium
* Replaced fftw-dev with fftw3-dev in Build-Depends (closes: #444124)
-- Piotr Ożarowski <piotr@debian.org> Wed, 26 Sep 2007 23:52:25 +0200
python-scipy (0.6.0-1) unstable; urgency=low
[Ondřej Čertík]
* New upstream release
* watch file added
[Piotr Ożarowski]
* Homepage field added
-- Ondrej Certik <ondrej@certik.cz> Sun, 23 Sep 2007 16:14:35 +0200
python-scipy (0.5.2.1-2) unstable; urgency=low
* Got rid of all lintian and linda warnings (removed "SciPy is an open
source library of scientific tools for Python" (first sentence) from the
long description)
* debian/control: Added XS-Vcs-Svn and XS-Vcs-Browser fields to the Source
section
-- Ondrej Certik <ondrej@certik.cz> Fri, 31 Aug 2007 04:29:55 +0200
python-scipy (0.5.2.1-1) unstable; urgency=low
* Adopting the package
* New upstream release (Closes: #426012)
* Removed unnecessary patches
* Removing LICENSE.txt, since it is unnecessary (and it fixes a lintian
warning)
-- Ondrej Certik <ondrej@certik.cz> Tue, 28 Aug 2007 12:03:29 +0200
python-scipy (0.5.2-9) experimental; urgency=low
* Added Build-Dep on python-numpy (Closes: 422389)
* Made build independent of the python version (Closes: 414626)
* Added a new patch on sandbox/montecarlo to fix py2.5 compatibility
-- Marco Presi (Zufus) <zufus@debian.org> Fri, 18 May 2007 11:12:31 +0100
python-scipy (0.5.2-8) experimental; urgency=low
* Fixed compatibility with numpy >= 1.0.2, by importing parts from upstream svn
-- Marco Presi (Zufus) <zufus@debian.org> Sat, 21 Apr 2007 22:46:29 +0100
python-scipy (0.5.2-7+b1) unstable; urgency=low
* Binary-only non-maintainer upload for i386; no source changes.
* Rebuild to fix binaries built against experimental
-- Debian/i386 Build Daemon <buildd_i386-saens> Tue, 27 Feb 2007 02:01:45 -0600
python-scipy (0.5.2-7) unstable; urgency=low
* Added 'm86k' among the archs on which xplt should not build.
-- Marco Presi (Zufus) <zufus@debian.org> Sat, 24 Feb 2007 13:40:42 +0000
python-scipy (0.5.2-6) unstable; urgency=low
* Merged patch for image viwer from upstream svn
-- Marco Presi (Zufus) <zufus@debian.org> Sat, 24 Feb 2007 01:39:18 +0000
python-scipy (0.5.2-5) experimental; urgency=low
* Added a fix in sandbox/montecarlo tests that prevented installation
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 22 Feb 2007 01:33:18 +0000
python-scipy (0.5.2-4) experimental; urgency=low
* Incorporated code from setup_without_xplt.py into patches/sandbox.dpatch, in order to
build sandbox/xplt only on supported archs (Closes: #407869).
* Added libx11-dev among Build-Deps to support xplt.
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 22 Feb 2007 00:33:51 +0000
python-scipy (0.5.2-3) experimental; urgency=low
* Added netcdfg-dev Build-Deps (completed sandbox inclusion)
-- Marco Presi (Zufus) <zufus@debian.org> Tue, 20 Feb 2007 23:28:43 +0000
python-scipy (0.5.2-2) experimental; urgency=low
* Enabled sandbox modules. To this aim randomkit.[ch] are included from
pyhon-numpy sources. See debian/patches/sandbox.dpatch
(Closes: #407869).
-- Marco Presi (Zufus) <zufus@debian.org> Mon, 19 Feb 2007 19:26:22 +0000
python-scipy (0.5.2-1) unstable; urgency=low
* Fixed scipy.signal segfault (closes: #410757)
* Replaced hard-coded xv command with "see" (from mime-support).
Additionally, the environment variable SCIPY_PIL_IMAGE_VIEWER can be set.
(Closes: #395198)
-- Marco Presi (Zufus) <zufus@debian.org> Sun, 18 Feb 2007 16:22:03 +0000
python-scipy (0.5.2-0.1) unstable; urgency=medium
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.
-- Matthias Klose <doko@debian.org> Sun, 7 Jan 2007 14:12:12 +0100
python-scipy (0.5.2-0) experimental; urgency=low
* New upstream version (compatible with python-numpy-1.0.x).
* (Build-)depend on python-numpy (>= 1:1.0.1).
* Remove redundant (build-)dependencies.
* weave examples and docs are removed from the upstream tarball.
-- Matthias Klose <doko@debian.org> Wed, 3 Jan 2007 22:37:49 +0100
python-scipy (0.5.1-3) unstable; urgency=low
* Moved weave/examples into /usr/share/doc/python-scipy/
and removed *.so files that prevented building on non x86 archs
(closes: #397241)
-- Marco Presi (Zufus) <zufus@debian.org> Sat, 16 Sep 2006 18:46:56 +0200
python-scipy (0.5.1-2) unstable; urgency=low
* Added swig and libufsparse-dev among Build-deps
-- Marco Presi (Zufus) <zufus@debian.org> Mon, 11 Sep 2006 22:05:45 +0200
python-scipy (0.5.1-1) unstable; urgency=low
* New upstream release
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 7 Sep 2006 00:32:07 +0200
python-scipy (0.5.0-3) unstable; urgency=low
* Re-compiled to reflect C-API changes in numpy.
-- Marco Presi (Zufus) <zufus@debian.org> Fri, 18 Aug 2006 01:06:06 +0200
python-scipy (0.5.0-2) unstable; urgency=low
* Re-added fftw-dev among build-deps.
-- Marco Presi (Zufus) <zufus@debian.org> Tue, 8 Aug 2006 17:34:44 -0400
python-scipy (0.5.0-1) unstable; urgency=low
* New upstream release
* Removed debian/patches/python2.3.dpatch now included in upstream release
-- Marco Presi (Zufus) <zufus@debian.org> Sun, 30 Jul 2006 00:33:21 +0200
python-scipy (0.4.9-2) unstable; urgency=low
* Build against new release of python-numpy.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Wed, 05 Jul 2006 18:06:41 +0100
python-scipy (0.4.9-1) unstable; urgency=low
* New upstream version.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Tue, 04 Jul 2006 16:11:01 +0100
python-scipy (0.3.2-9) unstable; urgency=low
* Updated to new python policy (closes: #373352)
* Updated standards to 3.7.2
-- Alexandre Fayolle <afayolle@debian.org> Thu, 15 Jun 2006 17:10:49 +0200
python-scipy (0.3.2-8) unstable; urgency=low
* Changed dependency on libwxgtk2.4-1-python to python-wxgtk2.4 (closes: #333795)
* Added cow progress bar fix by Glen W. Mabey (closes: #322796)
-- Alexandre Fayolle <afayolle@debian.org> Tue, 8 Nov 2005 11:56:51 +0100
python-scipy (0.3.2-7) unstable; urgency=low
* Depend on libwxgtk2.4-1-python due to new C++ ABI.
* Do not depend on obsolete blas-dev (Closes: #320441)
* Drop the python2.2 version due to python2.2-numeric removal.
* Applied Andreas Jochens' patch fixing gcc4.0 storage class
error (Closes: #302598)
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Sun, 31 Jul 2005 11:11:42 +0100
python-scipy (0.3.2-6) unstable; urgency=low
* Added a Suggests: python2.X-profiler in debian/control, made the
import of pstats optional by patching stats/__init__.py
(Closes: #296796)
-- Alexandre Fayolle <afayolle@debian.org> Fri, 11 Mar 2005 10:54:35 +0100
python-scipy (0.3.2-5) unstable; urgency=low
* Applied Adam Conrad's patch to allow build on m68k (Closes: #292919)
* Applied Andreas Jochens' patch fixing gcc4.0 incompatibility and
syntax error in debian/control (Closes: #288181)
-- Alexandre Fayolle <afayolle@debian.org> Thu, 17 Feb 2005 14:49:03 +0100
python-scipy (0.3.2-4) unstable; urgency=low
* Build for python 2.4.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Mon, 24 Jan 2005 12:25:16 +0000
python-scipy (0.3.2-3) unstable; urgency=low
* fixed build dependencies on arm (Closes: #277897)
-- Alexandre Fayolle <afayolle@debian.org> Sat, 23 Oct 2004 11:28:51 +0200
python-scipy (0.3.2-2) unstable; urgency=low
* Updated package description
* removed scipy.xplt on hppa, s390, ia64, mips, mipsel (Closes: #277485)
* Added note about the missing module in README.Debian
-- Alexandre Fayolle <afayolle@debian.org> Fri, 22 Oct 2004 15:05:00 +0200
python-scipy (0.3.2-1) unstable; urgency=low
* New version.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Mon, 18 Oct 2004 16:28:16 +0100
python-scipy (0.3.0+266.4239-1) unstable; urgency=low
* Updated to release.
* Recommends c++-compiler.
* Dropped python2.1 support.
* Official package (closes: #126037).
* Added Alexandre Fayolle and Marco Presi as uploaders
* Added missing build dependencies
-- Alexandre Fayolle <afayolle@debian.org> Mon, 13 Sep 2004 23:04:34 +0200
python-scipy (0.2.0+cvs20031002-1) unstable; urgency=low
* Moved scipy_core into a seperate package.
* Default to python-2.3.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Thu, 02 Oct 2003 13:31:30 +0100
python-scipy (0.2.0+alpha144.4350-1) unstable; urgency=low
* Initial Release.
-- José Fonseca <j_r_fonseca@yahoo.co.uk> Tue, 01 Jul 2003 13:35:03 +0100
|