Skip to content

Commit c2bd91c

Browse files
improve: update CI action versions, add py.typed marker, add py3.13 classifier, fix Makefile typecheck target
1 parent 524bd7a commit c2bd91c

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
id-token: write
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: '3.12'
2222

.github/workflows/release-audit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
audit:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 (pinned)
14+
- uses: actions/checkout@v6
1515
with:
1616
path: target
1717

1818
- name: Check out the shared release-audit harness
19-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 (pinned)
19+
uses: actions/checkout@v6
2020
with:
2121
repository: Coding-Dev-Tools/release-audit
2222
path: harness
@@ -25,7 +25,7 @@ jobs:
2525
ref: main
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 (pinned)
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: "3.11"
3131

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ format:
88
ruff format .
99

1010
typecheck:
11-
echo "no type-checker"
11+
pyright src/
1212

1313
test:
1414
pytest -q

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.10",
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2223
]
2324
dependencies = [
2425
"typer>=0.9.0",

src/devforge/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)