Skip to content

Commit 5ffe048

Browse files
committed
version fixes
1 parent 32f306c commit 5ffe048

File tree

3 files changed

+8
-97
lines changed

3 files changed

+8
-97
lines changed

.github/workflows/http-docs-build.yaml

Lines changed: 0 additions & 71 deletions
This file was deleted.

api/mypy.ini

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,3 @@ init_forbid_extra = True
99
init_typed = True
1010
warn_required_dynamic_aliases = True
1111
warn_untyped_fields = True
12-
13-
# Ignore optional/local packages that may not be installed
14-
[mypy-opentrons_hardware.*]
15-
ignore_missing_imports = True
16-
17-
[mypy-performance_metrics.*]
18-
ignore_missing_imports = True
19-
20-
# Test-only dependencies that may not have type stubs
21-
[mypy-pytest_lazy_fixtures.*]
22-
ignore_missing_imports = True
23-
24-
[mypy-hypothesis]
25-
ignore_missing_imports = True
26-
27-
[mypy-hypothesis.*]
28-
ignore_missing_imports = True
29-

api/pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ description = "The Opentrons API is a simple framework designed to make writing
1919

2020
dependencies = [
2121
"opentrons-shared-data==0.0.0",
22-
"aionotify~=0.3.1",
23-
"anyio~=4.9.0",
24-
"jsonschema~=4.17.3",
25-
"numpy~=1.22.3",
26-
"pydantic~=2.11.7",
27-
"pydantic-settings~=2.4.0",
22+
"aionotify==0.3.1",
23+
"anyio>=4.9.0,<5.0.0",
24+
"jsonschema>=3.0.1,<4.18.0",
25+
"numpy>=1.20.0,<2",
26+
"pydantic>=2.0.0,<3",
27+
"pydantic-settings>=2,<3",
2828
"pyserial>=3.5",
2929
"typing-extensions>=4.0.0,<5",
3030
"click>=8.0.0,<9",
31-
"pyusb~=1.2.1",
31+
"pyusb==1.2.1",
3232
'importlib-metadata >= 1.0 ; python_version < "3.8"',
33-
"packaging~=22.0",
33+
"packaging>=22.0",
3434
]
3535

3636
dynamic = ['version', 'hatch-dependency-coversion']

0 commit comments

Comments
 (0)