File tree Expand file tree Collapse file tree 3 files changed +866
-2441
lines changed Expand file tree Collapse file tree 3 files changed +866
-2441
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,16 @@ jobs:
13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- os : [ubuntu-latest, macos-latest, windows-latest]
17
- python-version : ["3.12", "3.13"]
16
+ os : [ubuntu-latest, macos-latest] # windows-latest
17
+ python-version : ["3.9", "3.10"] # 3.11+ issues with TF
18
+ exclude :
19
+ - os : macos-latest
20
+ python-version : " 3.9"
18
21
include :
19
22
- os : ubuntu-latest
20
23
path : ~/.cache/pip
21
24
- os : macos-latest
22
25
path : ~/Library/Caches/pip
23
- - os : windows-latest
24
- path : ~\AppData\Local\pip\Cache
25
26
26
27
steps :
27
28
- name : Checkout code
55
56
shell : bash -el {0} # Important: activates the conda environment
56
57
run : |
57
58
conda install pytables==3.8.0 "numpy<2"
58
- - name : Install and test
59
- run : |
60
- python -m pip install --upgrade pip wheel poetry
61
- python -m poetry install
62
- python -m poetry run dlc-live-test --nodisplay
59
+
60
+ - name : Install dependencies via Conda
61
+ shell : bash -el {0}
62
+ run : conda install -y "numpy>=1.26,<2.0"
63
+
64
+ - name : Install Poetry
65
+ run : pip install --upgrade pip wheel poetry
66
+
67
+ - name : Regenerate Poetry lock
68
+ run : poetry lock --no-cache
69
+
70
+ - name : Install project dependencies
71
+ run : poetry install --no-root
72
+
73
+ - name : Run DLC Live Tests
74
+ run : poetry run dlc-live-test --nodisplay
You can’t perform that action at this time.
0 commit comments