We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0870a01 commit 9603420Copy full SHA for 9603420
1 file changed
.github/workflows/test.yml
@@ -31,6 +31,14 @@ jobs:
31
python-version: ${{ matrix.python-version }}
32
auto-update-conda: true
33
34
+ - name: Cache PyTensor NUMBA compilation artifacts
35
+ uses: actions/cache@v4
36
+ with:
37
+ path: ~/.pytensor/numba/
38
+ key: pytensor-numba-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('requirements-dev.txt', 'pyproject.toml') }}
39
+ restore-keys: |
40
+ pytensor-numba-${{ runner.os }}-py${{ matrix.python-version }}-
41
+
42
- name: Install preliz
43
shell: bash -l {0}
44
run: |
0 commit comments