Skip to content

Commit e06ade3

Browse files
authored
Update testing.yml
1 parent 979e0e8 commit e06ade3

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/testing.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: ["3.10"] #3.11+ issues with TF
17+
python-version: ["3.9", "3.10"] #3.11+ issues with TF
18+
exclude:
19+
- os: windows-latest
20+
python-version: "3.10"
1821
include:
1922
- os: ubuntu-latest
2023
path: ~/.cache/pip
@@ -61,10 +64,13 @@ jobs:
6164
run: conda install -y "numpy>=1.26,<2.0"
6265

6366
- name: Install Poetry
64-
run: |
65-
pip install --upgrade pip wheel poetry
66-
poetry lock --no-cache
67-
poetry install --no-root
67+
run: pip install --upgrade pip wheel poetry
68+
69+
- name: Regenerate Poetry lock
70+
run: poetry lock --no-cache --no-update
71+
72+
- name: Install project dependencies
73+
run: poetry install --no-root
6874

6975
- name: Run DLC Live Tests
7076
run: poetry run dlc-live-test --nodisplay

0 commit comments

Comments
 (0)