From 7cd40dbfa34e40b1d8e410db17ea6a71f3dde730 Mon Sep 17 00:00:00 2001 From: Torbjorn Sorby Date: Thu, 27 Oct 2022 14:35:49 +0200 Subject: [PATCH] Specify which Python versions are supported Clarify exactly which Python versions are supported, and add the classifiers that makes it clear in the sidebar on pypi.org. --- README.md | 2 +- setup.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03dc244b..cc6c8f4e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Zivid Python is the official Python package for Zivid 3D cameras. Read more abou ### Dependencies -* [Python](https://www.python.org/) version 3.6 or higher +* [Python](https://www.python.org/) version 3.6, 3.7, 3.8, 3.9 and 3.10 * [Zivid SDK][zivid-download-software-url] version 2.8.0 (see [here][zivid-software-installation-url] for help) * [Compiler](doc/CompilerInstallation.md) with C++17 support diff --git a/setup.py b/setup.py index df630b62..70a9a7e8 100644 --- a/setup.py +++ b/setup.py @@ -139,7 +139,11 @@ def _main(): ], classifiers=[ "License :: OSI Approved :: BSD License", - "Programming Language :: Python :: 3", + "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 :: Implementation :: CPython", "Topic :: Scientific/Engineering", ],