Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ 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']
experimental: [false]
include:
- os: ubuntu-latest
python-version: '3.13'
python-version: '3.14'
experimental: true
- os: macos-latest
python-version: '3.13'
python-version: '3.14'
experimental: true
- os: windows-latest
python-version: '3.13'
python-version: '3.14'
experimental: true

steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/updated_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.12']
python-version: ['3.10', '3.12', '3.13']
experimental: [false]
include:
- os: ubuntu-latest
python-version: '3.13'
python-version: '3.14'
experimental: true
- os: macos-latest
python-version: '3.13'
python-version: '3.14'
experimental: true
- os: windows-latest
python-version: '3.13'
python-version: '3.14'
experimental: true

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/webtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.12']
python-version: ['3.10', '3.12', '3.13']
experimental: [false]
include:
- os: ubuntu-latest
python-version: '3.13'
python-version: '3.14'
experimental: true

steps:
Expand Down
14 changes: 7 additions & 7 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.4a1"
version = "0.4a2"
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.14"
numpy = ">=2.1.0,<2.3.0"
python = ">=3.10, <3.15"
numpy = ">=2.1.0,<2.4.0"

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