Skip to content

Commit a9a19cc

Browse files
committed
debug
1 parent 84ae2f6 commit a9a19cc

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

api/pyproject.toml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies = [
2222
"aionotify==0.3.1",
2323
"anyio==4.9.0",
2424
"click==8.1.2",
25-
"jsonschema==4.21.1",
25+
"jsonschema>=4.17.3,<5",
2626
"numpy==1.22.3",
2727
"packaging==22.0",
2828
"pydantic==2.11.7",
@@ -36,19 +36,12 @@ dependencies = [
3636

3737
[project.optional-dependencies]
3838
# Robot dependencies - exact versions from Pipfile [packages] for robot deployment
39+
# These exact pins narrow the version ranges in main dependencies for robot deployment
3940
robot = [
4041
"jsonschema==4.17.3",
41-
"pydantic==2.11.7",
42-
"pydantic-settings==2.4.0",
43-
"anyio==4.9.0",
44-
"opentrons-shared-data==0.0.0",
45-
"opentrons==0.0.0",
46-
"opentrons-hardware[FLEX]==0.0.0",
47-
"performance_metrics",
48-
"numpy==1.22.3",
49-
"packaging==22.0",
50-
"pyusb==1.2.1",
51-
"zipp==3.21.0",
42+
# Note: Other packages from Pipfile [packages] (pydantic, pydantic-settings, anyio,
43+
# numpy, packaging, pyusb, zipp, opentrons-shared-data, opentrons-hardware, performance_metrics)
44+
# are already pinned to exact versions in main dependencies, so no need to duplicate here.
5245
]
5346
dev = [
5447
"atomicwrites==1.4.0; sys_platform == 'win32'",

shared-data/pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ dependencies = [
3131

3232
[project.optional-dependencies]
3333
# Robot dependencies - exact versions from Pipfile [packages] for robot deployment
34+
# Note: Only includes packages not already in main dependencies. All packages from
35+
# Pipfile [packages] are already in main dependencies, so robot group is empty.
3436
robot = [
35-
"opentrons-shared-data==0.0.0",
36-
"jsonschema==4.21.1",
37-
"pydantic==2.11.7",
38-
"numpy==1.22.3",
39-
"zipp==3.21.0",
37+
# Note: All packages from Pipfile [packages] (opentrons-shared-data, jsonschema,
38+
# pydantic, numpy, zipp) are already in main dependencies with matching versions.
4039
]
4140
dev = [
4241
"atomicwrites==1.4.0; sys_platform == 'win32'",

0 commit comments

Comments
 (0)