changed python version back to 3.9

This commit is contained in:
Nicholas Dyer 2023-05-12 17:34:40 -04:00
parent b65f112b36
commit 3fa4e2190e
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ There are currently no releases of the game. To install the current version on G
## Installing From Source
Requirements:
- Python 3.10 or greater
- Python 3.9 or greater
- Pip
- Git

View File

@ -21,6 +21,6 @@ setuptools.setup(
classifiers=[
],
install_requires=required,
python_requires='>=3.10',
python_requires='>=3.9',
include_package_data=True,
)