[Python-modules-commits] [python-pyscss] 01/01: * Don't hard-code the python versions used in build to prevent FTBFS once python3.4 is dropped from supported versions (Closes: #811493)
Scott Kitterman
kitterman at moszumanska.debian.org
Tue Jan 19 13:42:19 UTC 2016
This is an automated email from the git hooks/post-receive script.
kitterman pushed a commit to branch master
in repository python-pyscss.
commit 3011c1dabe41ca3529aa3e94c7f7324068f2c664
Author: Scott Kitterman <scott at kitterman.com>
Date: Tue Jan 19 08:41:26 2016 -0500
* Don't hard-code the python versions used in build to prevent FTBFS once
python3.4 is dropped from supported versions (Closes: #811493)
---
debian/changelog | 9 +++++++++
debian/rules | 3 ++-
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 7ac1928..c79592a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+python-pyscss (1.3.4-5) unstable; urgency=medium
+
+ * Team upload.
+ * Don't hard-code the python versions used in build to prevent FTBFS once
+ python3.4 is dropped from supported versions (Closes: #811493)
+ - Thanks to Matthias Klose for the patch
+
+ -- Scott Kitterman <scott at kitterman.com> Tue, 19 Jan 2016 08:38:55 -0500
+
python-pyscss (1.3.4-4) unstable; urgency=low
* use pybuild instead of python_distutils
diff --git a/debian/rules b/debian/rules
index 9da8389..d22ec9d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -32,7 +32,8 @@ override_dh_clean:
override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
- set -e ; for pyvers in 2.7 3.4; do \
+ set -e ; for pyvers in $(PYTHONS) $(PYTHON3S); do \
+ echo "=========== running tests with python$$pyvers ==========="; \
py.test-$$pyvers ; \
done
endif
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pyscss.git
More information about the Python-modules-commits
mailing list