-
-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds python 3.11 support, updating pygame to 2.4.0 (#361)
- Loading branch information
1 parent
901bfe8
commit eb13881
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" | |
name = "minigrid" | ||
description = "Minimalistic gridworld reinforcement learning environments." | ||
readme = "README.md" | ||
requires-python = ">= 3.7, < 3.11" | ||
requires-python = ">= 3.7" | ||
authors = [{ name = "Farama Foundation", email = "[email protected]" }] | ||
license = { text = "MIT License" } | ||
keywords = ["Memory, Environment, Agent, RL, Gymnasium"] | ||
|
@@ -20,13 +20,14 @@ classifiers = [ | |
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
] | ||
dependencies = [ | ||
"numpy>=1.18.0", | ||
"gymnasium>=0.26", | ||
"pygame>=2.2.0", | ||
"gymnasium>=0.28.1", | ||
"pygame>=2.4.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
|