Skip to content

Commit

Permalink
Add Python 3.14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Nov 4, 2024
1 parent 8075bb5 commit 4fef9a0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
1 change: 1 addition & 0 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
include:
- version: "3.11"
check-formatting: "true"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_on_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Stubs consistency check
if: "${{ github.event.inputs.force != 'true' }}"
run: |
uv run istub -d
uv run --no-sync istub -d
- name: Bump version
run: |
echo "Bumping version to ${STUBS_VERSION}"
Expand Down
27 changes: 15 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Stubs Only",
Expand Down Expand Up @@ -93,18 +94,20 @@ indent-width = 4
target-version = "py38"

[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "I", "N", "D", "C4", "C90", "RUF", "PYI"]
ignore = [
"E203",
"D107",
"D200",
"D203",
"D212",
"D401",
"D406",
"D407",
"D413",
"D417",
select = [
"E4",
"E7",
"E9",
"F",
"B",
"I",
"N",
"D",
"C4",
"C90",
"RUF",
"PYI",
"UP",
]
fixable = ["ALL"]
unfixable = ["B"]
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4fef9a0

Please sign in to comment.