Skip to content

Commit

Permalink
Update Python version (#149)
Browse files Browse the repository at this point in the history
Co-authored-by: Paweł Czyż <[email protected]>
  • Loading branch information
grfrederic and pawel-czyz authored Mar 1, 2024
1 parent 73cc3af commit bb2b3b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.11", "3.12"]
poetry-version: ["1.3.2"]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
cache: "pip"
- name: Install Poetry
uses: snok/install-poetry@v1
Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@ readme = "README.md"
packages = [{include = "bmi", from = "src"}]

[tool.poetry.dependencies]
# <3.11 because of PyType. Update when it's resolved
# <3.12 because of SciPy. Update when it's resolved
python = ">=3.9,<3.11"
python = ">=3.9,<3.13"
equinox = "^0.10.2"
jax = "^0.4.8"
jaxlib = "^0.4.7"
numpy = "^1.24.2"
scikit-learn = "^1.2.2"
optax = "^0.1.4"
# Pandas <2.0.0 to ensure compatibility. Update when we validate that it works
pandas = "<2.0.0"
pandas = "^1.5.3"
pydantic = "^1.10.7"
pyyaml = "^6.0"
scipy = "^1.10.1"
Expand Down

0 comments on commit bb2b3b7

Please sign in to comment.