From 9e47352575d9b0a453770114853620e8342662fb Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 16 Feb 2020 14:32:28 -0600 Subject: Add support for Python 3.8 --- .travis.yml | 1 + README.md | 2 +- setup.py | 3 ++- tox.ini | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 65c36d32..c25a55be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "3.5" - "3.6" - "3.7" + - "3.8" - "nightly" # - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details) matrix: diff --git a/README.md b/README.md index 032882f5..7e0d8b6a 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If it is not in your `PATH`, you can help GitPython find it by setting the `GIT_PYTHON_GIT_EXECUTABLE=` environment variable. * Git (1.7.x or newer) -* Python 3.4 to 3.7. +* Python >= 3.4 The list of dependencies are listed in `./requirements.txt` and `./test-requirements.txt`. The installer takes care of installing them for you. diff --git a/setup.py b/setup.py index 488d348e..11a1d6b7 100755 --- a/setup.py +++ b/setup.py @@ -105,6 +105,7 @@ setup( "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7" + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8" ] ) diff --git a/tox.ini b/tox.ini index 36048fbc..df929a76 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py34,py35,py36,py37,flake8 +envlist = py34,py35,py36,py37,py38,flake8 [testenv] commands = nosetests {posargs} -- cgit v1.2.3