File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 27
27
28
28
steps :
29
29
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.6.0
30
+
31
+ - name : Prepare Python
32
+ uses : actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
33
+ with :
34
+ cache : ' pip' # caching pip dependencies
35
+
30
36
- name : Install dependencies
31
- run : pip3 install -r requirements.txt
37
+ run : pip install -r requirements.txt
38
+
32
39
- name : Run tests
33
40
run : pytest -v
Original file line number Diff line number Diff line change 37
37
steps :
38
38
- name : Checkout
39
39
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.6.0
40
+
41
+ - name : Prepare Python
42
+ uses : actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
43
+ with :
44
+ cache : ' pip' # caching pip dependencies
40
45
41
46
- name : Install dependencies
42
- run : pip3 install -r ./tools/release/requirements.txt
47
+ run : pip install -r ./tools/release/requirements.txt
43
48
44
49
- name : Extract Tag from branch name
45
50
run : |
Original file line number Diff line number Diff line change 27
27
CXX : clang++-14
28
28
steps :
29
29
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.6.0
30
-
30
+
31
+ - name : Prepare Python
32
+ uses : actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
33
+ with :
34
+ cache : ' pip' # caching pip dependencies
35
+
31
36
- name : Install dependencies
32
- run : pip3 install -r ./tools/release/requirements.txt
37
+ run : pip install -r ./tools/release/requirements.txt
33
38
34
39
- name : Update source code versions
35
40
run : ./tools/release/update_versions.py
Original file line number Diff line number Diff line change
1
+ 3.12
You can’t perform that action at this time.
0 commit comments