Skip to content

Commit

Permalink
adding py38 to manylinux
Browse files Browse the repository at this point in the history
  • Loading branch information
darioizzo committed Mar 10, 2020
1 parent 2275ffc commit bb34b8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ env:

matrix:
include:
- env: AUDI_BUILD="manylinux64Py38" DOCKER_IMAGE="pagmo2/manylinux2010_x86_64_with_deps"
sudo: required
services:
- docker
- env: AUDI_BUILD="manylinux64Py37" DOCKER_IMAGE="pagmo2/manylinux2010_x86_64_with_deps"
sudo: required
services:
Expand Down
5 changes: 4 additions & 1 deletion tools/install_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ set -x
# Exit on error.
set -e

if [[ ${AUDI_BUILD} == *37 ]]; then
if [[ ${AUDI_BUILD} == *38 ]]; then
PYTHON_DIR="cp38-cp38"
PYTHON_VERSION="38"
elif [[ ${AUDI_BUILD} == *37 ]]; then
PYTHON_DIR="cp37-cp37m"
PYTHON_VERSION="37"
elif [[ ${AUDI_BUILD} == *36 ]]; then
Expand Down

0 comments on commit bb34b8d

Please sign in to comment.