Skip to content

Commit 60d9db8

Browse files
committed
Remove the explicit Python version number
1 parent 9d046b1 commit 60d9db8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/dockerimage.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
sudo apt-get install -y clang-format-10 libgraphviz-dev
2424
- name: Install black and pytest
2525
run: |
26-
python3.7 -m pip install --upgrade pip
27-
python3.7 -m pip install setuptools
28-
python3.7 -m pip install mypy
29-
python3.7 -m pip install black
26+
python -m pip install --upgrade pip
27+
python -m pip install setuptools
28+
python -m pip install mypy
29+
python -m pip install black
3030
- name: Update git submodules
3131
run: git submodule update --init --recursive
3232
- name: C++ lint
3333
run: |
34-
python3.7 third_party/run-clang-format/run-clang-format.py \
34+
python third_party/run-clang-format/run-clang-format.py \
3535
polytracker/include/dfsan/*.h polytracker/src/*/*.cpp \
3636
--exclude 'polytracker/src/dfsan_rt/sanitizer_common/*' \
3737
--exclude 'polytracker/src/dfsan_rt/interception/*'
@@ -44,4 +44,3 @@ jobs:
4444
- name: Poly* tests
4545
run: |
4646
docker run --rm trailofbits/polytracker pytest --json=tests/test_data/polytracker_process_set.json --forest=tests/test_data/polytracker_forest.bin
47-

0 commit comments

Comments
 (0)