From be61523cf66261daec6240748b22eb17ff01d408 Mon Sep 17 00:00:00 2001 From: Eric Veilleux Date: Mon, 16 Oct 2023 21:51:20 -0400 Subject: [PATCH 1/2] Python 3.11 changes --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a631563..91bc085 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = '0.0.154' +__version__ = '0.0.155' with open("README.md", "r") as readme_file: long_description = readme_file.read() @@ -12,13 +12,13 @@ # already bundling those in the pynsist installer. # We'll go ahead and list some packages needed by bots in the bot pack, though. install_requires=[ - 'numba==0.55.1', + 'numba', 'scipy', 'numpy', 'RLUtilities', # Used by Snek 'websockets', # Needed for scratch bots 'selenium', # Needed for scratch bots - 'PyQt5==5.15.*' # Used for settings and file pickers currently. + 'PyQt5' # Used for settings and file pickers currently. ], version=__version__, description='A streamlined user interface for RLBot.', From 5272b0a1b3c88954fa738292b1631850d7c82e05 Mon Sep 17 00:00:00 2001 From: VirxEC Date: Mon, 16 Oct 2023 22:05:29 -0400 Subject: [PATCH 2/2] Remove version reqs for Python 3.11 Require Python 3.11+ --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 91bc085..860a751 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ setuptools.setup( name='rlbot_gui', packages=setuptools.find_packages(), + python_requires='>=3.11', # It actually requires 'gevent', 'eel', 'PyQt5', but that messes up the install for some people and we're # already bundling those in the pynsist installer. # We'll go ahead and list some packages needed by bots in the bot pack, though.