Compare commits

..

No commits in common. "3fa4e2190e443ab10c970448647622c1f309ebd5" and "5b2c724882c1462a98e86117a7e50d70d95969b1" have entirely different histories.

3 changed files with 3 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 ## Installing From Source
Requirements: Requirements:
- Python 3.9 or greater - Python 3.10 or greater
- Pip - Pip
- Git - Git

View File

@ -1,4 +1,5 @@
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.9', python_requires='>=3.10',
include_package_data=True, include_package_data=True,
) )