From f235e675c0a208487cc2f6c7be230a905dbfcc51 Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 15 Oct 2019 18:40:43 +0300 Subject: [PATCH 1/2] Declare support for Python 3.8 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index db4c55eeb6a..31100ed5b84 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ def find_version(*file_paths): "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", ], From d65bf5021a6d160fc1396d9be57880de1144f7bf Mon Sep 17 00:00:00 2001 From: hugovk Date: Tue, 15 Oct 2019 20:06:29 +0300 Subject: [PATCH 2/2] Update docs about Python 3.8 --- docs/html/installing.rst | 2 +- news/7219.feature | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 news/7219.feature diff --git a/docs/html/installing.rst b/docs/html/installing.rst index 6b50f929bc9..cfcdf7edabc 100644 --- a/docs/html/installing.rst +++ b/docs/html/installing.rst @@ -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. diff --git a/news/7219.feature b/news/7219.feature new file mode 100644 index 00000000000..ba0e9370489 --- /dev/null +++ b/news/7219.feature @@ -0,0 +1 @@ +Document Python 3.8 support.