diff options
-rw-r--r-- | .travis.yml | 14 | ||||
-rw-r--r-- | docs/installing.rst | 2 | ||||
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
4 files changed, 12 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 8f5e9bf5f..cc2ac9585 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,9 +23,9 @@ jobs: - env: GROUP=2 python: 2.7 - env: GROUP=1 - python: 3.6 + python: 3.7 - env: GROUP=2 - python: 3.6 + python: 3.7 # Complete checking for ensuring compatibility # PyPy @@ -40,6 +40,10 @@ jobs: python: pypy # Older Supported CPython - env: GROUP=1 + python: 3.6 + - env: GROUP=2 + python: 3.6 + - env: GROUP=1 python: 3.5 - env: GROUP=2 python: 3.5 @@ -49,14 +53,14 @@ jobs: python: 3.4 - env: GROUP=1 - python: 3.7-dev + python: 3.8-dev - env: GROUP=2 - python: 3.7-dev + python: 3.8-dev # It's okay to fail on the in-development CPython version. fast_finish: true allow_failures: - - python: 3.7-dev + - python: 3.8-dev before_install: tools/travis/setup.sh install: travis_retry tools/travis/install.sh diff --git a/docs/installing.rst b/docs/installing.rst index 916c3a3ba..6a103e84f 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -107,7 +107,7 @@ On Windows [4]_:: Python and OS Compatibility --------------------------- -pip works with CPython versions 2.7, 3.4, 3.5, 3.6 and also pypy. +pip works with CPython versions 2.7, 3.4, 3.5, 3.6, 3.7 and also pypy. This means pip works on the latest patch version of each of these minor versions. Previous patch versions are supported on a best effort approach. @@ -50,6 +50,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 :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ], @@ -1,7 +1,7 @@ [tox] envlist = docs, packaging, lint-py2, lint-py3, mypy, - py27, py34, py35, py67, py37, pypy, pypy3 + py27, py34, py35, py36, py37, py38, pypy, pypy3 [testenv] passenv = CI GIT_SSL_CAINFO |