From 432fbe2c9d652ac06ddac3170cc7d1fd5b8c07d5 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Thu, 7 Nov 2019 12:48:27 -0800 Subject: [PATCH] setup: Claim support for and allow installation with Python 3.8. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9aaa83f3ce..cbba5f0c6f 100644 --- a/setup.py +++ b/setup.py @@ -64,10 +64,11 @@ def long_description(): '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', ], - python_requires='>=3.5, <3.8', + python_requires='>=3.5, <=3.8', keywords='', packages=find_packages(exclude=['tests', 'tests.*']), zip_safe=True,