Skip to content

Commit

Permalink
Update all dependencies (#83)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Avasam <[email protected]>
  • Loading branch information
renovate[bot] and Avasam authored Dec 1, 2024
1 parent e4f8c85 commit 0f31d3c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/verify_newsfragments.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def main():
invalid_filenames = [
filename for filename
in listdir(NEWSFRAGMENTS_FIR)
in listdir(NEWSFRAGMENTS_FIR) # noqa: PTH208 # Easier as strings
if not (NEWS_PATTERN.fullmatch(filename) or filename.endswith(".gitignore"))
]

Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:
# Workaround for https://github.com/adamchainz/pre-commit-dprint/issues/4
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand Down Expand Up @@ -30,7 +30,7 @@ repos:
additional_dependencies: ["dprint@~0.46.0"]
pass_filenames: false # https://github.com/adamchainz/pre-commit-dprint/issues/3#issuecomment-1483410008
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.6.2" # Must match requirements-dev.txt
rev: "v0.8.1" # Must match requirements-dev.txt
hooks:
- id: ruff
args: [--fix]
Expand All @@ -43,7 +43,7 @@ repos:
hooks:
- id: add-trailing-comma
- repo: https://github.com/RobertCraigie/pyright-python
rev: "v1.1.377" # Must match requirements-dev.txt
rev: "v1.1.389" # Must match requirements-dev.txt
hooks:
- id: pyright
args: [--threads]
Expand Down
4 changes: 2 additions & 2 deletions Dolphin scripts/Entrance Randomizer/lib/transition_infos.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Transition(NamedTuple):
class ExitJSON(TypedDict):
area_id: str
area_name: str
requires: None | list[list[str]]
requires: list[list[str]] | None


class AreaJSON(TypedDict):
Expand All @@ -45,7 +45,7 @@ class AreaJSON(TypedDict):
class Exit:
area_id: int
area_name: str
requires: None | list[list[str]]
requires: list[list[str]] | None


@dataclass(frozen=True)
Expand Down
4 changes: 2 additions & 2 deletions Dolphin scripts/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pre-commit
# Below must match .pre-commit-config.yaml, this is handled by Renovate
add-trailing-comma==3.1.0
autopep8==2.3.1
pyright==1.1.377
ruff==0.6.2
pyright==1.1.389
ruff==0.8.1

0 comments on commit 0f31d3c

Please sign in to comment.