-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…563)
- Loading branch information
1 parent
ac78802
commit 6a7e0ae
Showing
10 changed files
with
66 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.12' | ||
- uses: pre-commit/[email protected] | ||
|
||
build-scratch: | ||
|
@@ -308,9 +308,9 @@ jobs: | |
|
||
- run: ls | ||
|
||
- name: Build | ||
- name: Install ALE wheel | ||
# wildcarding doesn't work for some reason, therefore, update the project version here | ||
run: python -m pip install ale_py-0.10.0-${{ matrix.wheel-name }}.whl | ||
run: python -m pip install ale_py-0.10.1-${{ matrix.wheel-name }}.whl | ||
|
||
- name: Install Gymnasium and pytest | ||
run: python -m pip install gymnasium>=1.0.0a2 pytest | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# MANIFEST.in | ||
include version.txt | ||
include vcpkg.json | ||
include CMakeLists.txt | ||
recursive-include cmake * | ||
include scripts/* | ||
recursive-include src * |
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
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 |
---|---|---|
|
@@ -14,14 +14,14 @@ requires-python = ">=3.8" | |
license = {text = "GPLv2"} | ||
keywords = ["reinforcement-learning", "arcade-learning-environment", "atari"] | ||
authors = [ | ||
{name = "Marc G. Bellemare"}, | ||
{name = "Yavar Naddaf"}, | ||
{name = "Joel Veness"}, | ||
{name = "Michael Bowling"}, | ||
{name = "Marc G. Bellemare"}, | ||
{name = "Yavar Naddaf"}, | ||
{name = "Joel Veness"}, | ||
{name = "Michael Bowling"}, | ||
] | ||
maintainers = [ | ||
{name = "Farama Foundation", email = "[email protected]"}, | ||
{name = "Jesse Farebrother", email = "[email protected]"}, | ||
{name = "Farama Foundation", email = "[email protected]"}, | ||
{name = "Jesse Farebrother", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -37,17 +37,17 @@ classifiers = [ | |
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
] | ||
dependencies = [ | ||
"numpy<2.0", | ||
"importlib-metadata>=4.10.0; python_version < '3.10'", | ||
"importlib-resources; python_version < '3.9'", | ||
"typing-extensions; python_version < '3.11'" | ||
"numpy>1.20", | ||
"importlib-metadata>=4.10.0; python_version < '3.10'", | ||
"importlib-resources; python_version < '3.9'", | ||
"typing-extensions; python_version < '3.11'" | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest>=7.0", | ||
"gymnasium>=1.0.0a1", | ||
"pytest>=7.0", | ||
"gymnasium>=1.0.0a1", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -57,8 +57,8 @@ changelog = "https://github.com/Farama-Foundation/Arcade-Learning-Environment/bl | |
|
||
[tool.setuptools] | ||
packages = [ | ||
"ale_py", | ||
"ale_py.roms", | ||
"ale_py", | ||
"ale_py.roms", | ||
] | ||
package-dir = {ale_py = "src/ale/python"} | ||
package-data = {"ale_py" = ["py.typed", "*.pyi", "**/*.pyi"], "ale_py.roms" = ["md5.json", "*.bin"]} | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.10.0 | ||
0.10.1 |