Skip to content

Commit 126efaf

Browse files
author
Jeff Whitaker
committed
turn on CURL verbose option, try again
1 parent 50a32a7 commit 126efaf

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ 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]
29+
platform: [x64]
30+
#python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
31+
#os: [ubuntu-latest]
32+
#platform: [x64, x32]
3333
include:
3434
- python-version: "3.7"
3535
os: ubuntu-latest

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

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

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

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

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

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

config.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,14 @@ function run_tests {
287287
echo $PATH
288288
ls -l /usr/local/lib
289289
which python
290+
which ncdump
290291
cp ../netcdf4-python/test/* .
291292
python run_all.py
292293
# add test for netcdf4-python issue #1246 (opendap with ssl)
293-
if [ -n "$IS_MACOS" ]; then # for now only run on MacOS since linux fails
294+
#if [ -n "$IS_MACOS" ]; then # for now only run on MacOS since linux fails
294295
URL='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide/m2.hamtide11a.nc'
296+
export CURLOPT_VERBOSE=1
295297
python -c "from netCDF4 import Dataset; nc=Dataset(\"${URL}\"); print(nc)"
296-
fi
298+
${BUILD_PREFIX}/bin/ncdump -h $URL
299+
#fi
297300
}

0 commit comments

Comments
 (0)