File tree 7 files changed +22
-8
lines changed 7 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 6
6
7
7
env :
8
8
# Also change CACHE_VERSION in the other workflows
9
- CACHE_VERSION : 27
9
+ CACHE_VERSION : 28
10
10
DEFAULT_PYTHON : " 3.10"
11
11
12
12
jobs :
Original file line number Diff line number Diff line change 8
8
pull_request : ~
9
9
10
10
env :
11
- CACHE_VERSION : 27
11
+ CACHE_VERSION : 28
12
12
DEFAULT_PYTHON : " 3.10"
13
13
PRE_COMMIT_CACHE : ~/.cache/pre-commit
14
14
Original file line number Diff line number Diff line change 13
13
- " .github/workflows/primer-test.yaml"
14
14
15
15
env :
16
- CACHE_VERSION : 27
16
+ CACHE_VERSION : 28
17
17
18
18
concurrency :
19
19
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Original file line number Diff line number Diff line change 14
14
15
15
env :
16
16
# This needs to be the SAME as in the Main and PR job
17
- CACHE_VERSION : 27
17
+ CACHE_VERSION : 28
18
18
19
19
permissions :
20
20
contents : read
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ concurrency:
16
16
17
17
env :
18
18
# This needs to be the SAME as in the PR and comment job
19
- CACHE_VERSION : 27
19
+ CACHE_VERSION : 28
20
20
21
21
jobs :
22
22
run-primer :
34
34
35
35
with :
36
36
python-version : ${{ matrix.python-version }}
37
-
38
37
- name : Get latest astroid commit
39
38
id : get-astroid-sha
40
39
run : |
88
87
path : tests/.pylint_primer_tests/commit_string.txt
89
88
90
89
# Run primer
90
+ - if : " contains(matrix.python-version, '-dev')"
91
+ # TODO: 2.16 Remove this when dill release their next version
92
+ run : |
93
+ . venv/bin/activate
94
+ pip install git+https://github.com/uqfoundation/dill.git@25a7e450ed76c7a0820834a3a91134476b1b8253
91
95
- name : Run pylint primer
92
96
run : |
93
97
. venv/bin/activate
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ concurrency:
25
25
26
26
env :
27
27
# This needs to be the SAME as in the Main and comment job
28
- CACHE_VERSION : 27
28
+ CACHE_VERSION : 28
29
29
30
30
jobs :
31
31
run-primer :
@@ -148,6 +148,11 @@ jobs:
148
148
git pull origin ${{ steps.download-main-run.outputs.result }} --no-edit --no-commit --no-rebase
149
149
150
150
# Run primer
151
+ - if : " contains(matrix.python-version, '-dev')"
152
+ # TODO: 2.16 Remove this when dill release their next version
153
+ run : |
154
+ . venv/bin/activate
155
+ pip install git+https://github.com/uqfoundation/dill.git@25a7e450ed76c7a0820834a3a91134476b1b8253
151
156
- name : Run pylint primer
152
157
run : |
153
158
. venv/bin/activate
Original file line number Diff line number Diff line change 10
10
- doc/data/messages/**
11
11
12
12
env :
13
- CACHE_VERSION : 27
13
+ CACHE_VERSION : 28
14
14
15
15
jobs :
16
16
tests-linux :
54
54
. venv/bin/activate
55
55
python -m pip install -U pip setuptools wheel
56
56
pip install -U -r requirements_test.txt
57
+ - if : " contains(matrix.python-version, '-dev')"
58
+ # TODO: 2.16 Remove this when dill release their next version
59
+ run : |
60
+ . venv/bin/activate
61
+ pip install git+https://github.com/uqfoundation/dill.git@25a7e450ed76c7a0820834a3a91134476b1b8253
57
62
- name : Run pytest
58
63
run : |
59
64
. venv/bin/activate
You can’t perform that action at this time.
0 commit comments