Skip to content

Commit

Permalink
Undebug
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Aug 29, 2023
1 parent e2cc159 commit 2ec3a85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
# Run on the full set on schedule, workflow_dispatch and push&tags events, otherwise on a subset.
# python-version: ${{ ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || ( github.event_name == 'push' && github.ref_type == 'tag' ) ) && fromJSON('["3.8", "3.9", "3.10", "3.11"]') || fromJSON('["3.8", "3.11"]') }}
os: ['ubuntu-latest']
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ${{ ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || ( github.event_name == 'push' && github.ref_type == 'tag' ) ) && fromJSON('["3.8", "3.9", "3.10", "3.11"]') || fromJSON('["3.8", "3.11"]') }}
timeout-minutes: 90
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def get_setup_version(reponame):
'numba >=0.51.0',
'datashader >=0.6.5',
'spatialpandas >=0.4.3',
'hdf5 ==1.14.0',
'hdf5 !=1.14.1', # Gives coredump in test suite on Linux and Mac
]

# Run the example tests by installing examples_tests together with tests
Expand Down

0 comments on commit 2ec3a85

Please sign in to comment.