Update versions and modify aperture field in DataCollectionParameters
Incremented project versions for `aaredaq`, `aaregui`, and `aaredaqlib` to `0.2.71`. Updated dependencies to ensure consistency across modules. Changed the `aperture` field in `DataCollectionParameters` from `Optional[str]` to `Optional[int]` in `aaredaqlib`.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "aaredaqlib"
|
||||
version = "0.2.70"
|
||||
version = "0.2.71"
|
||||
description = "Libraries shared between AareDAQ and AareGUI"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
|
||||
@@ -59,7 +59,7 @@ class DataCollectionParameters(BaseModel):
|
||||
int
|
||||
] = None # Only accept positive integers between 0 and 100
|
||||
targetresolution: Optional[float] = None # Only accept positive float
|
||||
aperture: Optional[str] = None # Optional string field
|
||||
aperture: Optional[int] = None # Optional string field
|
||||
datacollectiontype: Optional[
|
||||
str
|
||||
] = None # Only accept "standard", other types might be added later
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "aaredaq"
|
||||
version = "0.2.70"
|
||||
version = "0.2.71"
|
||||
description = "AareDAQ data acquisition server"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
@@ -13,7 +13,7 @@ dependencies = [
|
||||
"fastapi==0.115.13",
|
||||
"uvicorn==0.34.2",
|
||||
"ultralytics==8.3.133",
|
||||
"aaredb==0.1.1a33",
|
||||
"aaredb==0.1.1a42",
|
||||
"opencv-python-headless==4.11.0.86",
|
||||
"python_multipart==0.0.20",
|
||||
"websocket-client==1.8.0",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "aaregui"
|
||||
version = "0.2.70"
|
||||
version = "0.2.71"
|
||||
description = "Beamline control GUI"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
@@ -9,7 +9,7 @@ dependencies = [
|
||||
"pyzmq==26.4.0",
|
||||
"opencv-python-headless==4.11.0.86",
|
||||
"PySide6==6.9.0",
|
||||
"aaredaqlib==0.2.70"
|
||||
"aaredaqlib==0.2.71"
|
||||
]
|
||||
|
||||
[lint]
|
||||
|
||||
Reference in New Issue
Block a user