Skip to content

Commit

Permalink
update pyright and deepdiff
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Dec 19, 2024
1 parent 53b7558 commit 49c29d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/generate_json_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from argparse import ArgumentParser
from pathlib import Path
from tempfile import TemporaryDirectory
from typing import Any, Dict, Literal, Final
from typing import Any, Dict, Final, Literal

from deepdiff import DeepDiff # pyright: ignore [reportMissingTypeStubs]
from deepdiff.diff import DeepDiff
from pydantic import ConfigDict, TypeAdapter
from typing_extensions import assert_never

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"jupyter",
"pdoc",
"pre-commit",
"pyright==1.1.390",
"pyright==1.1.391",
"ruff",
],
},
Expand Down
2 changes: 1 addition & 1 deletion tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import shutil
from pathlib import Path

from deepdiff import DeepDiff
from deepdiff.diff import DeepDiff

from bioimageio.spec.model import v0_5

Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import jsonschema
import pytest
from deepdiff import DeepDiff # pyright: ignore [reportMissingTypeStubs]
from deepdiff.diff import DeepDiff
from pydantic import (
DirectoryPath,
RootModel,
Expand Down

0 comments on commit 49c29d2

Please sign in to comment.