Skip to content

Commit c44b97f

Browse files
committed
Fix python3 package on GitHub Actions
1 parent bf3437a commit c44b97f

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/linux.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,16 @@ jobs:
4444
- name: Install packages
4545
run: |
4646
sudo apt-get update -qq
47-
sudo apt-get install -y automake autoconf bison flex gdb python valgrind
47+
sudo apt-get install -y \
48+
automake \
49+
autoconf \
50+
bison \
51+
flex \
52+
gdb \
53+
python3 \
54+
valgrind
4855
- name: Prep
4956
run: |
50-
#pyenv global 3.6.7
51-
#pip3 install pipenv
52-
#(cd docs && pipenv sync)
53-
#if [ -n "$COVERAGE" ]; then pip install --user cpp-coveralls; fi
5457
echo SHELL=$SHELL
5558
echo PATH=$PATH
5659
which bison

0 commit comments

Comments
 (0)