Skip to content

Commit

Permalink
kokoro: use python3 instead of specific 3.8 version
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
  • Loading branch information
acomodi committed Mar 2, 2022
1 parent 1db2cff commit 523c4b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/kokoro/steps/hostsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ sudo apt-get install -y \
lsb \
nodejs \
psmisc \
python3.8 \
python3.8-dev \
python3.8-venv
python3 \
python3-dev \
python3-venv

echo "========================================"
echo "Enter virtual env for python 3.8"
echo "----------------------------------------"
python3.8 -mvenv startup_python
python3 -mvenv startup_python
source startup_python/bin/activate
which python
python --version
Expand Down
9 changes: 6 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
-e third_party/fasm
-e third_party/python-sdf-timing
-e .
intervaltree
junit-xml
numpy
Expand All @@ -10,9 +7,15 @@ parse
progressbar2
pyjson5
pytest
pytest-runner
pyyaml
scipy>=1.2.1
simplejson
sympy
textx
yapf==0.24.0

# Third party
-e third_party/fasm
-e third_party/python-sdf-timing
-e .

0 comments on commit 523c4b5

Please sign in to comment.