Skip to content

Commit

Permalink
Explicitly specify supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Aug 20, 2024
1 parent cc90917 commit 3829418
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3829418

Please sign in to comment.