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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
assignees:
- "bkircher"
ignore:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,19 @@ jobs:
run: |
mypy .

- name: Run basedpyright
run: |
python -m basedpyright

- name: Run linter
run: |
pylint --rcfile=.pylintrc pyrpm

check-spelling:
runs-on: ubuntu-latest
name: Spell check source files
steps:
- uses: actions/checkout@v5

- name: Check for spelling mistakes
uses: crate-ci/[email protected]
4 changes: 4 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# .typos.toml (https://github.com/crate-ci/typos)

[files]
extend-exclude = ["tests/**/*.spec"]
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.x.y (YYYY-MM-DD)

- Clean up typing; add basedpyright to CI.
- Fix a possible endless loop with recursive macro expansion.
- Add support for Python 3.14.
- Drop support for Python 3.9 version.

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ description-file = "README.md"
[tool.ruff]
target-version = "py313"
line-length = 130

[tool.basedpyright]
reportExplicitAny = false
reportUnreachable = false
Loading