Skip to content
Merged
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
2 changes: 1 addition & 1 deletion cosmo/config/cosmo_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Never, Final

import yaml
from jsonschema import validate
from jsonschema import validate # type: ignore

from cosmo.features import features

Expand Down
2 changes: 1 addition & 1 deletion cosmo/tests/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from sharedmock.mock import SharedMock # type: ignore
from unittest.mock import call, ANY

import jsonschema.exceptions
import jsonschema.exceptions # type: ignore
import yaml
import pytest
import os
Expand Down
2 changes: 1 addition & 1 deletion cosmo/tests/test_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import jsonschema.exceptions
import jsonschema.exceptions # type: ignore
import pytest

from cosmo.config.cosmo_config import CosmoConfig
Expand Down
1 change: 1 addition & 0 deletions package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
deepmerge,
termcolor,
multimethod,
jsonschema,
cosmo-version,
pytestCheckHook,
pytest-mock,
Expand Down
74 changes: 10 additions & 64 deletions poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ packaging = "^25"
deepmerge = "^2.0"
termcolor = "^3.1.0"
multimethod = "^2.0"
jsonschema = "^4.26.0"
types-jsonschema = "^4.26.0.20260202"
jsonschema = "4.25.0"

[tool.poetry.dev-dependencies]

Expand Down
Loading