From 73f365122ae61712ecf23b1d52d98454ac4ae692 Mon Sep 17 00:00:00 2001 From: Qianqian Fang Date: Thu, 17 Aug 2023 15:08:13 -0400 Subject: [PATCH] try building binary wheels on multiple python versions --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index de8a323a..efe8617f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,13 +26,8 @@ before_install: - export HOMEBREW_NO_INSTALL_CLEANUP=1 - brew install libomp - brew link --force libomp + - pyenv update - pyenv install --list - #- brew install pyenv - #- brew install python@3.10 - #- brew install python@3.8 - #- brew install python@3.9 - #- brew install python@3.10 - #- brew install python@3.11 ### Install CUDA - curl -o cuda.zip --insecure https://mcx.space/dev/ci/cuda-10-2-0.zip - unzip cuda.zip @@ -57,6 +52,12 @@ script: - python -m pip install --upgrade pip - python -m pip install wheel - python -m pip wheel . -w ../dist/ --verbose + - pyenv install 3.6-dev + - python -m pip wheel . -w ../dist/ --verbose + - pyenv install 3.8-dev + - python -m pip wheel . -w ../dist/ --verbose + - pyenv install 3.9-dev + - python -m pip wheel . -w ../dist/ --verbose - cd .. - chmod +x .github/check-pypi-upload.sh - GITHUB_OUTPUT=./pypi_upload .github/check-pypi-upload.sh