Skip to content

Commit

Permalink
Bump numpy for Py3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Wouda committed Oct 20, 2024
1 parent 047b760 commit aae4c5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
- name: Update pip and poetry
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ classifiers = [
"Tracker" = "https://github.com/N-Wouda/ALNS/issues"

[tool.poetry.dependencies]
python = "^3.8, <4.0"
numpy = ">=1.18.0"
python = "^3.9, <4.0"
numpy = [
# Numpy 1.26 is the first version of numpy that supports Python 3.12.
{ version = ">=1.18.0", python = "<3.12" },
{ version = ">=1.26.0", python = ">=3.12" }
]
matplotlib = ">=3.5.0"
mabwiser = { version = ">=2.7.1", optional = true }

Expand Down

0 comments on commit aae4c5a

Please sign in to comment.