diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 071440bb7..1483d4c18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 - run: | diff --git a/pyproject.toml b/pyproject.toml index 2fdecc32a..cfcab75c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "contact@farama.org" }] 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"]