Skip to content

Commit cb5640b

Browse files
committed
turn everything back on
1 parent 3abb2fa commit cb5640b

File tree

4 files changed

+28
-29
lines changed

4 files changed

+28
-29
lines changed

.github/workflows/build-wheels-linux.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,28 @@ jobs:
2424
fail-fast: false
2525

2626
matrix:
27-
python-version: [ "3.10"]
28-
os: [ubuntu-latest]
29-
platform: [x64]
30-
#python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
27+
#python-version: [ "3.10"]
3128
#os: [ubuntu-latest]
32-
#platform: [x64, x32]
33-
#include:
34-
# - python-version: "3.7"
35-
# os: ubuntu-latest
36-
# platform: aarch64
37-
# - python-version: "3.8"
38-
# os: ubuntu-latest
39-
# platform: aarch64
40-
# - python-version: "3.9"
41-
# os: ubuntu-latest
42-
# platform: aarch64
43-
# - python-version: "3.10"
44-
# os: ubuntu-latest
45-
# platform: aarch64
46-
# - python-version: "3.11"
47-
# os: ubuntu-latest
48-
# platform: aarch64
29+
#platform: [x64]
30+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
31+
os: [ubuntu-latest]
32+
platform: [x64, x32]
33+
include:
34+
- python-version: "3.7"
35+
os: ubuntu-latest
36+
platform: aarch64
37+
- python-version: "3.8"
38+
os: ubuntu-latest
39+
platform: aarch64
40+
- python-version: "3.9"
41+
os: ubuntu-latest
42+
platform: aarch64
43+
- python-version: "3.10"
44+
os: ubuntu-latest
45+
platform: aarch64
46+
- python-version: "3.11"
47+
os: ubuntu-latest
48+
platform: aarch64
4949

5050
env:
5151
REPO_DIR: netcdf4-python

.github/workflows/build-wheels-macosx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
fail-fast: false
2525

2626
matrix:
27-
#python-version: [ "3.8", "3.9", "3.10", "3.11" ]
28-
python-version: [ "3.10" ]
27+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
28+
#python-version: [ "3.10" ]
2929
os: [macos-latest]
3030
platform: [x86_64]
3131
env:

.github/workflows/build-wheels-macosx2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
fail-fast: false
2525

2626
matrix:
27-
#python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
28-
python-version: [ "3.10" ]
27+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
28+
#python-version: [ "3.10" ]
2929
os: [macos-latest]
3030
platform: [x86_64]
3131
env:

config.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,12 @@ function run_tests {
292292
URL='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide/m2.hamtide11a.nc'
293293
if [ -z "$IS_MACOS" ]; then # only needed for Linux
294294
# these should work, but don't
295-
echo "HTTP.SSL.CAINFO=/etc/ssl/certs/ca-certificates.crt" > $HOME/.daprc
296-
echo "HTTP.SSL.CAPATH=/etc/ssl/certs" >> $HOME/.daprc
295+
#echo "HTTP.SSL.CAINFO=/etc/ssl/certs/ca-certificates.crt" > $HOME/.ncrc
297296
#export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
298297
#echo "cacert=/etc/ssl/certs/ca-certificates.crt" > $HOME/.curlrc
299298
# this works
300-
#mkdir -p /etc/pki/tls/certs
301-
#ln -s /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt
299+
mkdir -p /etc/pki/tls/certs
300+
ln -s /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt
302301
fi
303302
python -c "from netCDF4 import Dataset; nc=Dataset(\"${URL}\"); print(nc)"
304303
}

0 commit comments

Comments
 (0)