Skip to content

Commit

Permalink
Add missing pydantic-settings specs to api and hardware setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Dec 11, 2024
1 parent 9768f01 commit 3dbe348
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def get_version():
"jsonschema>=4.0.0,<5",
"numpy>=1.20.0,<2",
"pydantic>=2.0.0,<3",
"pydantic-settings>=2,<3",
"pyserial>=3.5",
"typing-extensions>=4.0.0,<5",
"click>=8.0.0,<9",
Expand Down
2 changes: 2 additions & 0 deletions hardware/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def get_version() -> str:
PACKAGES = find_packages(where=".", exclude=["tests.*", "tests"])
INSTALL_REQUIRES = [
"pyserial==3.5",
"pydantic>=2,<3",
"pydantic-settings>=2,<3",
f"opentrons_shared_data=={VERSION}",
]

Expand Down

0 comments on commit 3dbe348

Please sign in to comment.