Skip to content

Publish wheels for 3.8, 3.9, and arm64; remove deprecated 3.5 #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ os:
- linux
- windows
- osx
arch:
- amd64
- arm64
env:
- PY_VER=3.6
- PY_VER=3.7
- PY_VER=3.5
- PY_VER=3.8
- PY_VER=3.9
osx_image: xcode8.3
matrix:
exclude:
Expand Down
8 changes: 7 additions & 1 deletion multibuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ export REPO_DIR=.
export BUILD_COMMIT=$TRAVIS_COMMIT
export PLAT=x86_64
export MB_PYTHON_VERSION=$PY_VER
export MB_ML_VER=2014
if [[ $TRAVIS_CPU_ARCH == "arm64" ]]
then
export PLAT=aarch64
export DOCKER_TEST_IMAGE=multibuild/xenial_arm64v8
fi

git clone https://github.com/matthew-brett/multibuild && cd multibuild && git checkout 254ad28 && cd ..
git clone https://github.com/matthew-brett/multibuild && cd multibuild && git checkout 45d97819e7d39dd2264b2c3cd353c26c4e1ebb74 && cd ..
source multibuild/common_utils.sh
source multibuild/travis_steps.sh
before_install
Expand Down