Bas Couwenberg pushed to branch upstream 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 - - - - - 4 changed files: - .travis.yml - CHANGES.txt - README.rst - cligj/__init__.py 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. View it on GitLab: https://salsa.debian.org/debian-gis-team/python-cligj/-/commit/e790903b15e76138233be83bbbeef2d03d1dd0ae -- View it on GitLab: https://salsa.debian.org/debian-gis-team/python-cligj/-/commit/e790903b15e76138233be83bbbeef2d03d1dd0ae 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
