@@ -24,19 +24,20 @@ jobs:
24
24
25
25
fail-fast : false
26
26
matrix :
27
- python-version : [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
27
+ # python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
28
+ python-version : [ "3.8", "3.9", "3.10" ]
28
29
os : [ubuntu-latest, macos-latest]
29
30
platform : [x64, x32]
30
31
exclude :
31
32
- os : macos-latest
32
33
platform : x32
33
34
include :
34
- - python-version : " 3.6"
35
- os : ubuntu-latest
36
- platform : aarch64
37
- - python-version : " 3.7"
38
- os : ubuntu-latest
39
- platform : aarch64
35
+ # - python-version: "3.6"
36
+ # os: ubuntu-latest
37
+ # platform: aarch64
38
+ # - python-version: "3.7"
39
+ # os: ubuntu-latest
40
+ # platform: aarch64
40
41
- python-version : " 3.8"
41
42
os : ubuntu-latest
42
43
platform : aarch64
@@ -46,14 +47,15 @@ jobs:
46
47
- python-version : " 3.10"
47
48
os : ubuntu-latest
48
49
platform : aarch64
50
+ # cross-compiled wheels for osx-arm64 don't work because of C libs, turn off for now
49
51
- python-version : " 3.8"
50
- os : macos-10.15
52
+ os : macos-latest
51
53
platform : x86_64
52
54
- python-version : " 3.9"
53
- os : macos-10.15
55
+ os : macos-latest
54
56
platform : x86_64
55
57
- python-version : " 3.10"
56
- os : macos-10.15
58
+ os : macos-latest
57
59
platform : x86_64
58
60
env :
59
61
REPO_DIR : netcdf4-python
89
91
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
90
92
if [ "schedule" == "${{ github.event_name }}" ]; then echo "TRAVIS_EVENT_TYPE=cron" >> $GITHUB_ENV; else echo "TRAVIS_EVENT_TYPE=${{ github.event_name }}" >> $GITHUB_ENV; fi
91
93
if [ "schedule" == "${{ github.event_name }}" ]; then echo "BUILD_COMMIT=master" >> $GITHUB_ENV; else echo "BUILD_COMMIT=$BUILD_COMMIT" >> $GITHUB_ENV; fi
92
- # make universal2 wheels on macos 10.15 by cross-compiling
93
- if [ "macos-10.15 " == "${{ matrix.os }}" ]; then echo "PLAT=universal2" >> $GITHUB_ENV; fi
94
+ # make universal2 wheels on macos by cross-compiling
95
+ if [ "macos-latest " == "${{ matrix.os }}" ]; then echo "PLAT=universal2" >> $GITHUB_ENV; fi
94
96
95
97
- name : Setup Special Environment variables for Linux AArch64
96
98
if : ${{ matrix.platform == 'aarch64' }}
0 commit comments