changed python version to 3.7, changed pygame to 1.9.6

This commit is contained in:
Nicholas Dyer 2023-05-12 22:57:56 -04:00
parent 3fa4e2190e
commit 5d3fc6ca49
3 changed files with 3 additions and 3 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 ## Installing From Source
Requirements: Requirements:
- Python 3.9 or greater - Python 3.7
- Pip - Pip
- Git - Git

View File

@ -1 +1 @@
pygame~=2.1.2 pygame~=1.9.6

View File

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