Bas Couwenberg pushed to branch master at Debian GIS Project / python-cligj
Commits: e790903b by Bas Couwenberg at 2020-11-21T07:04:01+01:00 New upstream version 0.7.1 - - - - - 95ebaef3 by Bas Couwenberg at 2020-11-21T07:04:02+01:00 Update upstream source from tag 'upstream/0.7.1' Update to upstream version '0.7.1' with Debian dir ecd2be6afd7096e382935254d3171e7c8024949a - - - - - 17b1d4e8 by Bas Couwenberg at 2020-11-21T07:05:08+01:00 New upstream release. - - - - - 69cd1bbd by Bas Couwenberg at 2020-11-21T07:05:38+01:00 Set distribution to unstable. - - - - - 5 changed files: - .travis.yml - CHANGES.txt - README.rst - cligj/__init__.py - debian/changelog Changes: ===================================== .travis.yml ===================================== @@ -1,10 +1,9 @@ sudo: false language: python python: - - "2.7" - - "3.4" - - "3.5" - "3.6" + - "3.7" + - "3.8" install: - "pip install coveralls" - "pip install -e .[test]" ===================================== CHANGES.txt ===================================== @@ -1,6 +1,12 @@ Changes ======= +0.7.1 (2010-11-20) +------------------ + +- Future deprecation warning added in 0.7.0 has been changed. Cligj version + 1.0.0 will support Python versions >= 3.6. + 0.7.0 (2010-10-21) ------------------ ===================================== README.rst ===================================== @@ -1,8 +1,8 @@ cligj ====== -.. image:: https://travis-ci.org/mapbox/cligj.svg - :target: https://travis-ci.org/mapbox/cligj +.. image:: https://travis-ci.com/mapbox/cligj.svg + :target: https://travis-ci.com/mapbox/cligj .. image:: https://coveralls.io/repos/mapbox/cligj/badge.png?branch=master :target: https://coveralls.io/r/mapbox/cligj?branch=master ===================================== cligj/__init__.py ===================================== @@ -11,10 +11,10 @@ import click from .features import normalize_feature_inputs -__version__ = "0.7.0" +__version__ = "0.7.1" -if sys.version_info < (3, 7): - warn("cligj 1.0.0 will require Python >= 3.7", FutureWarning) +if sys.version_info < (3, 6): + warn("cligj 1.0.0 will require Python >= 3.6", FutureWarning) # Multiple input files. ===================================== debian/changelog ===================================== @@ -1,9 +1,10 @@ -python-cligj (0.7.0-2) UNRELEASED; urgency=medium +python-cligj (0.7.1-1) unstable; urgency=medium * Team upload. + * New upstream release. * Bump watch file version to 4. - -- Bas Couwenberg <[email protected]> Fri, 06 Nov 2020 19:51:19 +0100 + -- Bas Couwenberg <[email protected]> Sat, 21 Nov 2020 07:05:28 +0100 python-cligj (0.7.0-1) unstable; urgency=medium View it on GitLab: https://salsa.debian.org/debian-gis-team/python-cligj/-/compare/911a7ddebde8d2bdd2fbeb4384276ef43e63248a...69cd1bbdfea00bb0cd56933ef5e2b28ddb6ae2e7 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/python-cligj/-/compare/911a7ddebde8d2bdd2fbeb4384276ef43e63248a...69cd1bbdfea00bb0cd56933ef5e2b28ddb6ae2e7 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
