Skip to content

Commit

Permalink
Pin python version to below 3.11 for triangle support
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Sep 14, 2023
1 parent a8b1343 commit 8b30231
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
environment-file: ./environment.yml
environment-name: ocsmesh-env
extra-specs: |
python=3.*
python=3.10
- name: Install dependencies
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9', '3.10', '3.11' ]
python-version: [ '3.9', '3.10' ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional_test_2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9', '3.10', '3.11' ]
python-version: [ '3.9', '3.10' ]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
environment-file: ./environment.yml
environment-name: ocsmesh-env
extra-specs: |
python=3.*
python=3.10
- name: Install dependencies
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ maintainers = [
description = "Package to generate computational unstructured meshes from planetary modeling."
license = {file = "LICENSE"}
readme = "README.md"
requires-python = '>=3.9' # 3.8 not supported by scipy
requires-python = '>=3.9, <3.11' # 3.8 -> scipy, 3.11 -> triangle
dependencies = [
"colored-traceback", "fiona", "geopandas",
"jigsawpy", "matplotlib", "netCDF4", "numba",
Expand Down

0 comments on commit 8b30231

Please sign in to comment.