Skip to content

Commit eb13881

Browse files
Adds python 3.11 support, updating pygame to 2.4.0 (#361)
1 parent 901bfe8 commit eb13881

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10']
12+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- run: |

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88
name = "minigrid"
99
description = "Minimalistic gridworld reinforcement learning environments."
1010
readme = "README.md"
11-
requires-python = ">= 3.7, < 3.11"
11+
requires-python = ">= 3.7"
1212
authors = [{ name = "Farama Foundation", email = "[email protected]" }]
1313
license = { text = "MIT License" }
1414
keywords = ["Memory, Environment, Agent, RL, Gymnasium"]
@@ -20,13 +20,14 @@ classifiers = [
2020
"Programming Language :: Python :: 3.8",
2121
"Programming Language :: Python :: 3.9",
2222
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
2324
'Intended Audience :: Science/Research',
2425
'Topic :: Scientific/Engineering :: Artificial Intelligence',
2526
]
2627
dependencies = [
2728
"numpy>=1.18.0",
28-
"gymnasium>=0.26",
29-
"pygame>=2.2.0",
29+
"gymnasium>=0.28.1",
30+
"pygame>=2.4.0",
3031
]
3132
dynamic = ["version"]
3233

0 commit comments

Comments
 (0)