Skip to content

Commit

Permalink
Drop python 3.8 and add support for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
pmav99 committed Oct 30, 2023
1 parent 7e0c5d8 commit 60941d3
Show file tree
Hide file tree
Showing 6 changed files with 994 additions and 1,115 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
python: [ '3.8', '3.9', '3.10', '3.11' ]
python: [ '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ celerybeat.pid
# Environments
.env
.venv
.venv*/
env/
venv/
ENV/
Expand Down
1,728 changes: 804 additions & 924 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.8, <3.12"
python = ">=3.9, <3.13"
beautifulsoup4 = "*"
dataretrieval = ">=1"
erddapy = "*"
Expand Down Expand Up @@ -58,7 +58,7 @@ urllib3 = "<2" # https://github.com/kevin1024/vcrpy/issues/688

[tool.poetry.group.docs.dependencies]
dunamai = "*"
m2r2 = "*"
m2r2 = ">=0.3.2"
sphinx = "*"
furo = "*"
toml = "*"
Expand Down
Loading

0 comments on commit 60941d3

Please sign in to comment.