Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updated_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.12']
python-version: ['3.10', '3.13']

steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.12']
python-version: ['3.10', '3.13']

steps:
- uses: actions/checkout@v5
Expand Down
99 changes: 59 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "astarsample"
version = "0.4a0"
version = "0.4a1"
description = "Example project"
readme = "README.md"
license = "GPL-3.0-or-later"
Expand All @@ -11,8 +11,8 @@ packages = [{include = "sample"}]
[tool.poetry.dependencies]
# When updating the version, also update the versions in .github/workflows/*
# and also re-run "poetry lock --no-update" and commit the changed lock file
python = ">=3.10, <3.13"
numpy = "^1.26.4"
python = ">=3.10, <3.14"
numpy = ">=2.1.0,<2.3.0"

[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
Expand Down
Loading