From 12c8bf3cef1a6f4369ab253a5deb04600e8a439e Mon Sep 17 00:00:00 2001 From: Sebastian Bank Date: Wed, 7 Oct 2020 10:25:00 +0200 Subject: [PATCH] Revert "drop Python 3.5 support" for bugfix release This reverts commit 3651713c98c997ce90ba5fcc27c24837e444dcff. --- .travis.yml | 1 + CHANGES.txt | 2 -- README.rst | 2 +- docs/manual.rst | 2 +- setup.py | 3 ++- tox.ini | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d181264d9..576834b7a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ language: python cache: pip python: - "2.7" + - "3.5" - "3.6" - "3.7" - "3.8" diff --git a/CHANGES.txt b/CHANGES.txt index f1b8085d0c..0d523cbd95 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,8 +8,6 @@ Version 0.14.2 (in development) Adapt `graphviz.version()` to support the Graphviz Release version entry format introduced with `2.44.2` (`version()` is needed to run the tests). -Drop Python 3.5 support. - Version 0.14.1 -------------- diff --git a/README.rst b/README.rst index 5830898bbc..2d30e73b49 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ Links Installation ------------ -This package runs under Python 2.7, and 3.6+, use pip_ to install: +This package runs under Python 2.7, and 3.5+, use pip_ to install: .. code:: bash diff --git a/docs/manual.rst b/docs/manual.rst index e3c4f92273..9c5ca50c74 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -8,7 +8,7 @@ Installation ------------ :mod:`graphviz` provides a simple pure-Python interface for the Graphviz_ -graph-drawing software. It runs under Python 2.7 and 3.6+. To install it +graph-drawing software. It runs under Python 2.7 and 3.5+. To install it with pip_ run the following: .. code:: bash diff --git a/setup.py b/setup.py index 592e0d511b..06520702c9 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ }, packages=find_packages(), platforms='any', - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*', + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', extras_require={ 'dev': ['tox>=3', 'flake8', 'pep8-naming', 'wheel', 'twine'], 'test': ['mock>=3', 'pytest>=4', 'pytest-mock>=2', 'pytest-cov'], @@ -35,6 +35,7 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', diff --git a/tox.ini b/tox.ini index d51d8b65cf..2a234b3adc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,36,37,38} +envlist = py{27,35,36,37,38} skip_missing_interpreters = true [testenv]