Skip to content
Open
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -9,7 +9,7 @@ repos:
- id: debug-statements
- id: check-ast
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.11.9"
rev: "v0.15.1"
hooks:
- id: ruff
args: ["--fix"]
Expand All @@ -23,7 +23,7 @@ repos:
args: ["ruff", "--fix", "--ignore=E402,B018,F704"]
additional_dependencies: [jupytext, ruff]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.15.0"
rev: "v1.19.1"
hooks:
- id: mypy
exclude: ipynb_filter.py|docs/source/conf.py
6 changes: 2 additions & 4 deletions docs/source/logo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ jupytext:
extension: .md
format_name: myst
format_version: 0.13
jupytext_version: 1.14.5
jupytext_version: 1.19.1
kernelspec:
display_name: Python 3 (ipykernel)
language: python
name: python3
execution:
timeout: 300
---

```{code-cell} ipython3
Expand Down Expand Up @@ -168,7 +166,7 @@ def animate_png(folder=None, nseconds=15):


def save_webp(fname_webp, ims):
(im, *_ims) = ims
im, *_ims = ims
im.save(
fname_webp,
save_all=True,
Expand Down
Loading