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
4 changes: 2 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.13"

- name: Bump package Version using Poetry
id: bumping
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docstring_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.13"

- name: Create step summary
run: echo "## Building $(poetry version)" >> $GITHUB_STEP_SUMMARY
Expand All @@ -26,7 +26,7 @@ jobs:
run: poetry build >> $GITHUB_STEP_SUMMARY

- name: Store distribution files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: distribution
path: dist/
Expand All @@ -52,18 +52,18 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.13"

- name: Create step summary
run: echo "## Publishing $(poetry version) to PyPI" >> $GITHUB_STEP_SUMMARY

- name: Retrieve distribution files
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: distribution
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/replaceholder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.13"

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
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 @@ -41,7 +41,7 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Install poetry
shell: bash
run: pipx install poetry==2.1.4
run: pipx install poetry==2.3.0

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
220 changes: 133 additions & 87 deletions poetry.lock

Large diffs are not rendered by default.

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.4a2"
version = "0.4a3"
description = "Example project"
readme = "README.md"
license = "GPL-3.0-or-later"
Expand All @@ -15,8 +15,8 @@ python = ">=3.10, <3.15"
numpy = ">=2.1.0,<2.4.0"

[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
pytest = "^9.0.2"
pytest-cov = "^7.0.0"

[build-system]
requires = ["poetry-core"]
Expand Down
Loading