Skip to content

Commit

Permalink
BLD: Bump requirements to python 3.9
Browse files Browse the repository at this point in the history
I started to use type annotations that are available only in 3.9
Since 3.8 reaches end of life in october and new versions of numpy
are targetting 3.9, I think it's safe to upgrade the minimum
version here.
  • Loading branch information
Jacob-Stevens-Haas committed May 14, 2024
1 parent d2cddac commit 4cbf78d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7" ]
python-version: [ "3.9" ]
poetry-version: [ "1.2.1" ]
steps:
# ======
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7"]
python-version: ["3.9"]
poetry-version: ["1.2.1"]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: release
strategy:
matrix:
python-version: ["3.7"]
python-version: ["3.9"]
poetry-version: ["1.2.1"]
steps:
# ======
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.rst"


[tool.poetry.dependencies]
python = "^3.7"
python = "^3.9"
numpy = "^1.18.3"
scipy = "^1.4.1"
scikit-learn = "^1"
Expand Down

0 comments on commit 4cbf78d

Please sign in to comment.