Skip to content

Commit

Permalink
put bound on pydantic.
Browse files Browse the repository at this point in the history
  • Loading branch information
weinbe58 committed Apr 23, 2024
1 parent 4c03b1c commit be205f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies = [
"numpy",
"scipy",
"matplotlib",
"pydantic",
"pydantic>=2.0.0",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/quera_ahs_utils/quera_ir/capabilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydantic import BaseModel
from pydantic.v1 import BaseModel

__all__ = ["QuEraCapabilities"]

Expand Down
2 changes: 1 addition & 1 deletion src/quera_ahs_utils/quera_ir/task_results.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from enum import Enum
from pydantic import BaseModel, conlist, conint
from pydantic.v1 import BaseModel, conlist, conint
from typing import Callable, Optional, List, Tuple
import numpy as np

Expand Down
2 changes: 1 addition & 1 deletion src/quera_ahs_utils/quera_ir/task_specification.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydantic import BaseModel
from pydantic.v1 import BaseModel
from typing import Optional, List, Tuple, Union
from decimal import Decimal

Expand Down

0 comments on commit be205f4

Please sign in to comment.