-
-
Notifications
You must be signed in to change notification settings - Fork 454
[Feat] Deprecate Python 3.8, add Python 3.12 + update CI/CD #1246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
c9fa974
feat(pyproject.toml): deprecate python 3.8 and add python 3.13
David-GERARD 81fb067
feat(README.md): deprecate python 3.8 and add python 3.12,3.13
David-GERARD ddac964
ci(build-publish.yml): deprecate python 3.8 and add python 3.13
David-GERARD 1a8497b
ci(linux-test.yml): deprecate python 3.8 and add python 3.13
David-GERARD 4949c5f
ci(linux-tutorials-test.yml): deprecate python 3.8 and add python 3.1…
David-GERARD 34327d8
ci(macos-test.yml): deprecate python 3.8, add python 3.13
David-GERARD 251ad42
docs(basic_usage.md): deprecate python 3.8 and add python 3.12,3.13
David-GERARD 16ea895
feat: remove python 3.13 as not supported by pygame
David-GERARD 7d318f2
ci: remove python 3.13 as not supported by pygame
David-GERARD 3f36bc3
build: switch to pygame 2.6.0 to unable python 3.12
David-GERARD b340eb7
chore: pre-commit
David-GERARD d02e7dd
ci(linux-tutorials-test.yml): remove python 3.13 from agilerl test
David-GERARD 964cf88
test: fix pygame to 2.6.0 to test if CI passes
David-GERARD fa88fb6
improve deps installation process in workflows/linux-tutorials-test.yml
mwydmuch c4bd472
install all deps in workflows/linux-tutorials-test.yml
mwydmuch 0d0b79c
revert the requirment for pygame>=2.6.0
mwydmuch 8d6aeb7
set ubuntu version in tutorials tests to 22.04
mwydmuch f23b45d
bump wandb version to support python 3.12
mwydmuch 17872c5
fix agilerl tests
mwydmuch e9b2f13
build: pin python version to >3.12 as agileRL relies on pathtools
David-GERARD 6fea488
chore: add .DS_Store to .gitignore
David-GERARD 6be00c7
docs: add warning that AgileRL doesn't support python 3.12
David-GERARD 75262b8
build: remove python 3.12 from agileRL tutorials
David-GERARD 6eb2b72
fix: python_version in requirements.txt
David-GERARD File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,15 +8,14 @@ build-backend = "setuptools.build_meta" | |
name = "pettingzoo" | ||
description = "Gymnasium for multi-agent reinforcement learning." | ||
readme = "README.md" | ||
requires-python = ">= 3.8" | ||
requires-python = ">= 3.9, <3.13" | ||
authors = [{ name = "Farama Foundation", email = "[email protected]" }] | ||
license = { text = "MIT License" } | ||
keywords = ["Reinforcement Learning", "game", "RL", "AI", "gymnasium"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
pettingzoo==1.24.0 | ||
numpy>=1.21.0 | ||
pettingzoo>=1.24.0 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.