-
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.
Remove gym implementation (only gymnasium) (#511)
- Loading branch information
1 parent
687351c
commit 382bb3d
Showing
13 changed files
with
134 additions
and
820 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 |
---|---|---|
|
@@ -36,9 +36,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- runs-on: ubuntu-latest | ||
python: '3.7' | ||
triplet: x64-linux-mixed | ||
- runs-on: ubuntu-latest | ||
python: '3.8' | ||
triplet: x64-linux-mixed | ||
|
@@ -52,9 +49,6 @@ jobs: | |
python: '3.11' | ||
triplet: x64-linux-mixed | ||
|
||
- runs-on: macos-latest | ||
python: '3.7' | ||
triplet: x64-osx-mixed | ||
- runs-on: macos-latest | ||
python: '3.8' | ||
triplet: x64-osx-mixed | ||
|
@@ -68,9 +62,6 @@ jobs: | |
python: '3.11' | ||
triplet: x64-osx-mixed | ||
|
||
# - runs-on: windows-latest | ||
# python: '3.7' | ||
# triplet: x64-windows | ||
# - runs-on: windows-latest | ||
# python: '3.8' | ||
# triplet: x64-windows | ||
|
@@ -97,9 +88,7 @@ jobs: | |
- name: Install test dependencies | ||
# TODO(jfarebro): There's a bug with Windows cmake and PEP517 builds via pip install. | ||
# As a temporary workaround installing cmake outside of the isolated env seems to work. | ||
run: | | ||
python -m pip install --user --upgrade -r tests/requirements.txt | ||
python -m pip install --user cmake | ||
run: python -m pip install --user cmake | ||
|
||
- uses: microsoft/[email protected] | ||
if: runner.os == 'Windows' | ||
|
@@ -116,7 +105,7 @@ jobs: | |
doNotCache: true | ||
|
||
- name: Build | ||
run: python -m pip install --user --verbose . | ||
run: python -m pip install --user --verbose .[test] | ||
|
||
- name: Test | ||
run: python -m 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
Oops, something went wrong.