Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

ENH: Build Python3.10.0rc1 64 bit wheels on Intel. #129

Merged
merged 1 commit into from
Aug 10, 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
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ env:
- REPO_DIR=numpy
# Also see CRON_COMMIT below
- BUILD_COMMIT=main
- BUILD_DEPENDS=cython==0.29.21
- BUILD_DEPENDS=cython==0.29.24
- TEST_DEPENDS="pytest hypothesis cffi pytz"
# Commit when running from cron job
- CRON_COMMIT=main
Expand Down Expand Up @@ -55,6 +55,18 @@ jobs:
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
- NPY_AVAILABLE_MEM=4GiB

#- os: linux
#arch: arm64
#env:
#- AZURE_PYTHON_VERSION="3.9"
#- PLAT=aarch64
#- MB_PYTHON_VERSION=3.10
#- MB_ML_VER=2014
#- CONFIG_PATH: "config_ilp64.sh"
#- DEBUG_PRINT=1
#- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
#- NPY_AVAILABLE_MEM=4GiB

before_install:
- if [ "$TRAVIS_EVENT_TYPE" == "cron" ]; then
CONTAINER="pre-release";
Expand Down Expand Up @@ -88,7 +100,7 @@ after_success:
# https://travis-ci.com/github/MacPython/numpy-wheels/settings
# originally generated at
# anaconda.org/scipy-wheels-nightly/settings/access
# and
# and
# anaconda.org/multibuild-wheels-staging/settings/access
- if [ "$TRAVIS_BRANCH" == "main" ] ; then
ANACONDA_ORG="scipy-wheels-nightly";
Expand Down
13 changes: 13 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,19 @@ jobs:
MB_ML_VER: "2014"
CONFIG_PATH: "config_ilp64.sh"

#py_3.10_32:
#AZURE_PYTHON_VERSION: "3.9"
#MB_PYTHON_VERSION: "3.10"
#PLAT: "i686"
#MB_ML_VER: "2014"
#ENV_VARS_PATH: "env_vars_32.sh"
py_3.10_64:
AZURE_PYTHON_VERSION: "3.9"
MB_PYTHON_VERSION: "3.10"
MB_ML_VER: "2014"
CONFIG_PATH: "config_ilp64.sh"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I uploaded focal images, let's give it a try. They will not be available for 32-bit linux

Suggested change
CONFIG_PATH: "config_ilp64.sh"
CONFIG_PATH: "config_ilp64.sh"
DOCKER_TEST_IMAGE: "multibuild/focal_{PLAT}"

DOCKER_TEST_IMAGE: "multibuild/focal_{PLAT}"

- template: azure/posix.yml
parameters:
name: macOS
Expand Down
4 changes: 2 additions & 2 deletions azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
variables:
REPO_DIR: "numpy"
PLAT: "x86_64"
CYTHON_BUILD_DEP: "cython==0.29.21"
CYTHON_BUILD_DEP: "cython==0.29.24"
NIGHTLY_BUILD_COMMIT: "main"
TEST_DEPENDS: "pytest hypothesis cffi pytz"
JUNITXML: "test-data.xml"
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- bash: |
set -ex
echo $BUILD_COMMIT

pip install virtualenv wheel
BUILD_DEPENDS="$CYTHON_BUILD_DEP"

Expand Down