Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 558bbc1

Browse files
authored
Merge pull request #144 from tylerjereddy/treddy_updates_thin_wheels
MAINT: add thin wheels, some fixes
2 parents 58e0b1d + 759c9c1 commit 558bbc1

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

azure-pipelines.yml

+16
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,30 @@ jobs:
5555
MB_PYTHON_VERSION: "3.8"
5656
MB_PYTHON_OSX_VER: "10.9"
5757
PLAT: universal2
58+
osx-Py38_arm64:
59+
MB_PYTHON_VERSION: "3.8"
60+
MB_PYTHON_OSX_VER: "10.9"
61+
PLAT: arm64
5862
osx-Py39:
5963
MB_PYTHON_VERSION: "3.9"
6064
MB_PYTHON_OSX_VER: "10.9"
6165
osx-Py39-universal2:
6266
MB_PYTHON_VERSION: "3.9"
6367
MB_PYTHON_OSX_VER: "10.9"
6468
PLAT: universal2
69+
osx-Py39_arm64:
70+
MB_PYTHON_VERSION: "3.9"
71+
MB_PYTHON_OSX_VER: "10.9"
72+
PLAT: arm64
73+
osx-Py310:
74+
MB_PYTHON_VERSION: "3.10"
75+
MB_PYTHON_OSX_VER: "10.9"
76+
PLAT: x86_64
6577
osx-Py310-universal2:
6678
MB_PYTHON_VERSION: "3.10"
6779
MB_PYTHON_OSX_VER: "10.9"
6880
PLAT: universal2
81+
osx-Py310_arm64:
82+
MB_PYTHON_VERSION: "3.10"
83+
MB_PYTHON_OSX_VER: "11.0"
84+
PLAT: arm64

azure-posix.yml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
source multibuild/travis_steps.sh
8181
install_run $PLAT
8282
displayName: Install wheel and test
83+
condition: ne(variables['PLAT'], 'arm64')
8384
8485
- bash: |
8586
echo "##vso[task.prependpath]$CONDA/bin"

run_scipy_tests.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import sys
88
import argparse
9+
import multiprocessing
910

1011

1112
def main():

0 commit comments

Comments
 (0)