From 3829418f14ba772e842fa21781c83e09e96237ee Mon Sep 17 00:00:00 2001 From: iver56 Date: Tue, 20 Aug 2024 15:41:55 +0200 Subject: [PATCH] Explicitly specify supported Python versions --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e258747c..3ae31186 100644 --- a/setup.py +++ b/setup.py @@ -52,9 +52,13 @@ def find_version(*file_paths): "pyroomacoustics>=0.6.0", ] }, - python_requires=">=3.8", + python_requires=">=3.8,<=3.12", classifiers=[ - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 3 - Alpha",