Skip to content

Commit 74f87c7

Browse files
committed
Support python 3-11-9
1 parent f248e98 commit 74f87c7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

ml-agents-envs/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def run(self):
4747
"Topic :: Scientific/Engineering :: Artificial Intelligence",
4848
"License :: OSI Approved :: Apache Software License",
4949
"Programming Language :: Python :: 3.10",
50+
"Programming Language :: Python :: 3.11",
5051
],
5152
packages=find_packages(
5253
exclude=["*.tests", "*.tests.*", "tests.*", "tests", "colabs", "*.ipynb"]
@@ -59,11 +60,11 @@ def run(self):
5960
"protobuf>=3.6,<3.21",
6061
"pyyaml>=3.1.0",
6162
"gym>=0.21.0",
62-
"pettingzoo==1.15.0",
63+
"pettingzoo>=1.23.0",
6364
"numpy>=1.23.5,<1.24.0",
6465
"filelock>=3.4.0",
6566
],
66-
python_requires=">=3.10.1,<=3.10.12",
67+
python_requires=">=3.10.1,<=3.11.9",
6768
# TODO: Remove this once mypy stops having spurious setuptools issues.
6869
cmdclass={"verify": VerifyVersionCommand}, # type: ignore
6970
)

ml-agents/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def run(self):
4949
"Topic :: Scientific/Engineering :: Artificial Intelligence",
5050
"License :: OSI Approved :: Apache Software License",
5151
"Programming Language :: Python :: 3.10",
52+
"Programming Language :: Python :: 3.11",
5253
],
5354
# find_namespace_packages will recurse through the directories and find all the packages
5455
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
@@ -74,7 +75,7 @@ def run(self):
7475
'pypiwin32==223;platform_system=="Windows"',
7576
"onnx==1.15.0",
7677
],
77-
python_requires=">=3.10.1,<=3.10.12",
78+
python_requires=">=3.10.1,<=3.11.9",
7879
entry_points={
7980
"console_scripts": [
8081
"mlagents-learn=mlagents.trainers.learn:main",

0 commit comments

Comments
 (0)