Skip to content

Commit

Permalink
Update python version limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Jul 31, 2024
1 parent 7d2d85f commit 8ebfa10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quick_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: install Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # due to numba
python-version: '3.10'
- name: load cached Python installation
id: cache
uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tests


on:
push:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.x' ]
steps:
- name: clone repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build-backend = 'poetry.core.masonry.api'
enable = true

[tool.poetry.dependencies]
python = '<3.11' # due to numba
python = '>=3.8'
adcircpy = '>=1.2.5'
dunamai = { version = '*', optional = true }
file-read-backwards = '*'
Expand Down

0 comments on commit 8ebfa10

Please sign in to comment.