Skip to content

Commit

Permalink
Revert "drop Python 3.5 support" for bugfix release
Browse files Browse the repository at this point in the history
This reverts commit 3651713.
  • Loading branch information
xflr6 committed Oct 7, 2020
1 parent 374e6b8 commit 12c8bf3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ language: python
cache: pip
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
2 changes: 0 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,36,37,38}
envlist = py{27,35,36,37,38}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 12c8bf3

Please sign in to comment.