build: fixed dependencies to compatible releases

This commit is contained in:
2024-04-15 11:36:39 +02:00
parent 4c00372592
commit 26c04b5d03

View File

@ -14,20 +14,26 @@ classifiers = [
] ]
dependencies = [ dependencies = [
"ophyd~=1.9", "ophyd~=1.9",
"typeguard", "typeguard~=4.0",
"prettytable", "prettytable~=3.9",
"bec_lib", "bec_lib~=2.0",
"numpy", "numpy~=1.24",
"pyyaml", "pyyaml~=6.0",
"std_daq_client", "std_daq_client~=1.3",
"pyepics", "pyepics~=3.5",
"pytest", "pytest~=8.0",
"h5py", "h5py~=3.10",
"hdf5plugin", "hdf5plugin~=4.3",
] ]
[project.optional-dependencies] [project.optional-dependencies]
dev = ["black", "isort", "coverage", "pylint", "pytest", "pytest-random-order"] dev = [
"black~=24.0",
"isort~=5.0",
"coverage~=7.4",
"pylint~=3.0",
"pytest-random-order~=1.0",
]
[project.scripts] [project.scripts]
ophyd_test = "ophyd_devices:launch" ophyd_test = "ophyd_devices:launch"
@ -35,6 +41,8 @@ ophyd_test = "ophyd_devices:launch"
[project.urls] [project.urls]
"Bug Tracker" = "https://gitlab.psi.ch/bec/ophyd_devices/issues" "Bug Tracker" = "https://gitlab.psi.ch/bec/ophyd_devices/issues"
Homepage = "https://gitlab.psi.ch/bec/ophyd_devices" Homepage = "https://gitlab.psi.ch/bec/ophyd_devices"
documentation = "https://bec.readthedocs.org"
changelog = "https://gitlab.psi.ch/bec/ophyd_devices/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
include = ["*"] include = ["*"]