Skip to content

Commit 6c5d412

Browse files
authored
Fix requirements for Python 3.11 (#223)
* Python 3.11 changes * Remove version reqs for Python 3.11 Require Python 3.11+
1 parent a13cdde commit 6c5d412

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
import setuptools
22

3-
__version__ = '0.0.154'
3+
__version__ = '0.0.155'
44

55
with open("README.md", "r") as readme_file:
66
long_description = readme_file.read()
77

88
setuptools.setup(
99
name='rlbot_gui',
1010
packages=setuptools.find_packages(),
11+
python_requires='>=3.11',
1112
# It actually requires 'gevent', 'eel', 'PyQt5', but that messes up the install for some people and we're
1213
# already bundling those in the pynsist installer.
1314
# We'll go ahead and list some packages needed by bots in the bot pack, though.
1415
install_requires=[
15-
'numba==0.55.1',
16+
'numba',
1617
'scipy',
1718
'numpy',
1819
'RLUtilities', # Used by Snek
1920
'websockets', # Needed for scratch bots
2021
'selenium', # Needed for scratch bots
21-
'PyQt5==5.15.*' # Used for settings and file pickers currently.
22+
'PyQt5' # Used for settings and file pickers currently.
2223
],
2324
version=__version__,
2425
description='A streamlined user interface for RLBot.',

0 commit comments

Comments
 (0)