Skip to content
Closed
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
exclude: "tests"

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
rev: v4.0.0-alpha.8
hooks:
- id: prettier

Expand All @@ -30,7 +30,7 @@ repos:
args: ["--ignore", "paper/paper.md"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.22"
rev: "v0.16.0"
hooks:
# Run the linter.
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_star_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _fetch_stargazer_timestamps() -> list[datetime]:
page = 1
while True:
url = f"https://api.github.com/repos/{REPO}/stargazers?per_page=100&page={page}"
request = urllib.request.Request(url, headers=headers) # noqa: S310
request = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(request) as response: # noqa: S310
entries = json.loads(response.read())
if not entries:
Expand Down
Loading