summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@debian.org>2019-10-20 09:16:44 +0200
committerPicca Frédéric-Emmanuel <picca@debian.org>2019-10-20 09:16:44 +0200
commitf7db9516ddf23e4ec01e6291f51a2e7be3de075f (patch)
treea43397712da85cf353b55e29aaed52052ca20b7a
parenta3e0e01295f94f275d88ccdf90aa30b8516af7d0 (diff)
removed the Python2 autopkgtests.
-rw-r--r--debian/changelog8
-rw-r--r--debian/tests/control9
-rwxr-xr-xdebian/tests/python210
-rwxr-xr-xdebian/tests/python31
4 files changed, 7 insertions, 21 deletions
diff --git a/debian/changelog b/debian/changelog
index dbaa245..300fd27 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,11 +7,17 @@ lmfit-py (0.9.14-1) UNRELEASED; urgency=medium
* Use 'python3 -m sphinx' instead of sphinx-build for building docs.
* Added the salsa-ci.yml file.
* d/control: Added python3-ipython to Build-Depends.
+ * unactivated the doc build until jupyter_sphinx is available.
+ * replace nose -> pytest
+ * install doc via d/rules
+ * Remove Python2 module (Closes: #936960)
+ * switched to compat level 12
+ * Bumped Standards-Version to 4.4.1 (nothing to do)
[ Andreas Tille ]
* New upstream version 0.9.11+dfsg
- -- Picca Frédéric-Emmanuel <picca@debian.org> Sun, 29 Sep 2019 09:15:48 +0200
+ -- Picca Frédéric-Emmanuel <picca@debian.org> Sun, 20 Oct 2019 09:14:35 +0200
lmfit-py (0.9.11+dfsg-2) unstable; urgency=medium
diff --git a/debian/tests/control b/debian/tests/control
index 765f2ae..b939225 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,12 +1,3 @@
-Tests: python2
-Depends: python-all,
- python-lmfit,
- python-matplotlib,
- python-nose,
- python-pandas,
- python-scipy,
- python-tk
-
Tests: python3
Depends: python3-all,
python3-lmfit,
diff --git a/debian/tests/python2 b/debian/tests/python2
deleted file mode 100755
index 9e1f2e4..0000000
--- a/debian/tests/python2
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -e -u
-
-cp -a NIST_STRD/ "$AUTOPKGTEST_TMP"
-cd "$AUTOPKGTEST_TMP/NIST_STRD"
-
-for python in $(pyversions -i); do
- PYTHONWARNINGS=d $python /usr/bin/nosetests -v 2>&1
-done
-
diff --git a/debian/tests/python3 b/debian/tests/python3
index 934b76e..d33930f 100755
--- a/debian/tests/python3
+++ b/debian/tests/python3
@@ -7,4 +7,3 @@ cd "$AUTOPKGTEST_TMP/NIST_STRD"
for python in $(py3versions -i); do
PYTHONWARNINGS=d $python /usr/bin/nosetests3 -v 2>&1
done
-