From fdbed0f0cbae8de21c73338a6817f8aa79cef4c9 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 10 Dec 2020 15:19:02 -0500 Subject: feat: add support for Python 3.9 (#111) Also, add missing declaration of support for Python 3.8. Closes #110. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c8fd257..baea1c0 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ package_root = os.path.abspath(os.path.dirname(__file__)) version = {} with open(os.path.join(package_root, "google/api_core/version.py")) as fp: exec(fp.read(), version) -version = version['__version__'] +version = version["__version__"] readme_filename = os.path.join(package_root, "README.rst") with io.open(readme_filename, encoding="utf-8") as readme_file: @@ -91,6 +91,8 @@ setuptools.setup( "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Operating System :: OS Independent", "Topic :: Internet", ], -- cgit v1.2.3