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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build wheel and SDist
run: pipx run build

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: dist/*

Expand All @@ -36,7 +36,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: artifact
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- name: Install package
run: uv pip install --system -e .[test]
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: check-yaml

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.14.2"
rev: "v0.14.3"
hooks:
- id: ruff-check
args: ["--fix", "--show-fixes"]
Expand All @@ -30,7 +30,7 @@ repos:
- id: mypy
files: src
args: []
additional_dependencies: [pint]
additional_dependencies: [pint<0.25.1] # upper limit given issue reported with 0.25.1, see https://github.com/hgrecco/pint/issues/2245

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ dynamic = ["version"]
all = [
"pytest-cov>=2.8.0",
"pytest>=6",
"pint",
"pint<0.25.1",
]
dev = [
"pytest-cov>=2.8.0",
"pytest>=6",
"pint",
"pint<0.25.1",
]
test = [
"pytest-cov>=2.8.0",
"pytest>=6",
"pint",
"pint<0.25.1",
]

[project.urls]
Expand Down Expand Up @@ -90,7 +90,7 @@ ignore = [

[tool.mypy]
warn_unused_configs = true
python_version = "3.10"
python_version = "3.13"
files = ["src"]
strict = true
warn_unreachable = true
Expand Down