Merge pull request #7219 from hugovk/add-3.8

Declare support for Python 3.8
This commit is contained in:
Christopher Hunt 2019-10-17 09:22:03 -04:00 committed by Xavier Fernandez
parent afcb3e7eaf
commit 4bc72977fc
3 changed files with 3 additions and 1 deletions

View File

@ -109,7 +109,7 @@ On Windows [4]_::
Python and OS Compatibility
---------------------------
pip works with CPython versions 2.7, 3.5, 3.6, 3.7 and also PyPy.
pip works with CPython versions 2.7, 3.5, 3.6, 3.7, 3.8 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.

1
news/7219.feature Normal file
View File

@ -0,0 +1 @@
Document Python 3.8 support.

View File

@ -52,6 +52,7 @@ setup(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],