Skip to content

Commit

Permalink
try building binary wheels on multiple python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Aug 17, 2023
1 parent 205d9b3 commit 73f3651
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 73f3651

Please sign in to comment.