Skip to content

Commit c115c8f

Browse files
authored
Windows workflow fix (#652)
1 parent 31f924c commit c115c8f

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

.github/workflows/build-and-test-windows-wheels.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,6 @@ jobs:
6666
repository: mwydmuch/ViZDoomWinDepBin
6767
path: ${{ github.workspace }}\deps
6868

69-
- name: Cache 7-Zip
70-
id: cache-7z
71-
uses: actions/cache@v4
72-
with:
73-
path: |
74-
C:\Program Files\7-Zip
75-
C:\ProgramData\chocolatey\lib\7zip
76-
key: 7zip-25.0-${{ runner.os }}
77-
78-
- name: Install 7-Zip 25.00 for compatibility
79-
if: steps.cache.outputs.cache-hit != 'true'
80-
run: choco install 7zip --version=25.0 -y --force --allow-downgrade
81-
8269
- name: Install boost
8370
uses: MarkusJx/install-boost@v2
8471
id: install-boost

gymnasium_wrapper/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from gymnasium.envs.registration import register
22

3-
DEFAULT_VIZDOOM_ENTRYPOINT = "vizdoom.gymnasium_wrapper.gymnasium_env_defns:VizdoomScenarioEnv"
3+
4+
DEFAULT_VIZDOOM_ENTRYPOINT = (
5+
"vizdoom.gymnasium_wrapper.gymnasium_env_defns:VizdoomScenarioEnv"
6+
)
47

58
register(
69
id="VizdoomBasic-v1",

0 commit comments

Comments
 (0)