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
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.13
- name: Install dependencies
run: |
poetry install --only main,docs
poetry install --no-interaction --only main,docs
- name: Build Documentation
run: |
poetry run python -m docs
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.5
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: "poetry"
- name: Install dependencies
run: |
poetry install --only main,test
poetry install --no-interaction --only main,test
- name: Test with pytest
run: |
poetry run pytest
poetry run pytest -v
- name: Save Coverage Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
path: coverage.xml
Expand All @@ -40,7 +40,7 @@ jobs:
needs: test
steps:
- name: Restore all Coverage Reports
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
- name: Upload Coverage Report
uses: codecov/codecov-action@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: Install dependencies
run: |
poetry install --only-root
poetry install --no-interaction --only-root
- name: Build and publish
env:
POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TESTPYPI_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ repos:
- id: trailing-whitespace
- id: check-toml
- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.11.0
rev: v2.12.1
hooks:
- id: pyproject-fmt
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: 1.7.0
rev: 1.7.1
hooks:
- id: tox-ini-fmt
- repo: https://github.com/rhysd/actionlint
rev: v1.7.8
rev: v1.7.12
hooks:
- id: actionlint
- repo: https://github.com/psf/black
rev: 25.9.0
rev: 26.3.1
hooks:
- id: black
- repo: https://github.com/adamchainz/blacken-docs
Expand All @@ -28,7 +28,7 @@ repos:
- id: blacken-docs
files: pathlibutil/
- repo: https://github.com/pycqa/isort
rev: 7.0.0
rev: 8.0.1
hooks:
- id: isort
- repo: https://github.com/python-poetry/poetry
Expand All @@ -37,7 +37,7 @@ repos:
- id: poetry-lock
args: ["--no-update"]
- repo: https://github.com/google/yamlfmt
rev: v0.19.0
rev: v0.21.0
hooks:
- id: yamlfmt
- repo: https://github.com/PyCQA/flake8
Expand Down
Loading
Loading