Compare commits

..

2 Commits

Author SHA1 Message Date
3fa4e2190e changed python version back to 3.9 2023-05-12 17:34:40 -04:00
b65f112b36 removed unused import 2023-05-12 17:34:27 -04:00
3 changed files with 2 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.10 or greater - Python 3.9 or greater
- Pip - Pip
- Git - Git

View File

@ -1,5 +1,4 @@
import pygame import pygame
import time
class Surface(pygame.Surface): class Surface(pygame.Surface):

View File

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