From 5d3fc6ca49b9f75298b2c19ba27f45f6ae634ae2 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Fri, 12 May 2023 22:57:56 -0400 Subject: [PATCH] changed python version to 3.7, changed pygame to 1.9.6 --- README.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 84f6322..ad0c579 100644 --- a/README.md +++ b/README.md @@ -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.9 or greater +- Python 3.7 - Pip - Git diff --git a/requirements.txt b/requirements.txt index 1581372..454329a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pygame~=2.1.2 \ No newline at end of file +pygame~=1.9.6 \ No newline at end of file diff --git a/setup.py b/setup.py index 22c7c62..6f91597 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,6 @@ setuptools.setup( classifiers=[ ], install_requires=required, - python_requires='>=3.9', + python_requires='>=3.7', include_package_data=True, )