Skip to content

Commit

Permalink
More default to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
SnijderC committed Nov 30, 2017
1 parent 22ca04a commit a3102bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ build:compile:
stage: build-compile
image: $BUILD_COMPILE_CONTAINER
script:
- which python && $(which python) --version
- which python3 && $(which python3) --version
- openssl version
- git submodule update --init --recursive
- pip install --user -r requirements.txt
- pip3 install --user -r requirements.txt
- make clean
- make
artifacts:
Expand Down Expand Up @@ -180,7 +180,7 @@ test:dev-setup:
- openssl version
- git submodule update --init
- pip3 install virtualenv
- virtualenv --p $(which python3) env/
- virtualenv -p $(which python3) env/
- source env/bin/activate
- pip3 install -e .
- ./refresh_testdata.sh
Expand Down

0 comments on commit a3102bb

Please sign in to comment.