From 462ebcf79dfad9651b37959ec4e19db041492c61 Mon Sep 17 00:00:00 2001 From: Nicholas Junge Date: Mon, 17 Oct 2022 15:28:43 +0200 Subject: [PATCH] Add information for supported Python versions to setup.py Adds qualifiers for Python 3.9-3.11 indicating them being supported in the Python bindings building. Support for Python 3.6 was removed, so the indicator for Python 3.6 was removed. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78801b4219..e9d598a0f9 100644 --- a/setup.py +++ b/setup.py @@ -147,9 +147,11 @@ def bazel_build(self, ext): "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Testing", "Topic :: System :: Benchmark", ],