Skip to content

Commit

Permalink
Add Python 3.12 support (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
younik authored Aug 12, 2024
1 parent fda0bb0 commit 057abb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ build-backend = "setuptools.build_meta"
name="SuperSuit"
description="Wrappers for Gymnasium and PettingZoo"
readme="README.md"
requires-python = ">= 3.8, < 3.12"
requires-python = ">= 3.8"
authors = [{ name = "Farama Foundation", email = "[email protected]" }]
license = { text = "MIT License" }
keywords=["Reinforcement Learning", "game", "RL", "AI", "gymnasium"]
classifiers=[
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 057abb7

Please sign in to comment.