@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "aaredaqlib"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
description = "Libraries shared between AareDAQ and AareGUI"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
|
||||
+9
-9
@@ -1,24 +1,24 @@
|
||||
[project]
|
||||
name = "aaredaq"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
description = "AareDAQ data acquisition server"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"requests~=2.32.3",
|
||||
"pyepics~=3.5.7",
|
||||
"redis~=6.1.0",
|
||||
"python-redis-lock~=4.0.0",
|
||||
"requests==2.32.4",
|
||||
"pyepics==3.5.8",
|
||||
"redis==6.2.0",
|
||||
"python-redis-lock==4.0.0",
|
||||
"PyJWT==2.10.1",
|
||||
"fastapi==0.115.12",
|
||||
"fastapi==0.115.13",
|
||||
"uvicorn==0.34.2",
|
||||
"ultralytics==8.3.133",
|
||||
"aaredb==0.1.1a11",
|
||||
"opencv-python-headless==4.11.0.86",
|
||||
"python_multipart==0.0.20",
|
||||
"websocket-client",
|
||||
"sseclient-py>=1.8.0",
|
||||
"aaredaqlib==0.2.1",
|
||||
"websocket-client==1.8.0",
|
||||
"sseclient-py==1.8.0",
|
||||
"aaredaqlib==0.2.2"
|
||||
]
|
||||
|
||||
[lint]
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "aaregui"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
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.1"
|
||||
"aaredaqlib==0.2.2"
|
||||
]
|
||||
|
||||
[lint]
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
#/bin/bash
|
||||
|
||||
VERSION=$(<VERSION)
|
||||
|
||||
for i in */pyproject.toml
|
||||
do
|
||||
sed -i "s,version.*,version = \"${VERSION}\"," $i
|
||||
sed -i "s,\"aaredaqlib==.*,\"aaredaqlib==${VERSION}\"," $i
|
||||
done
|
||||
Reference in New Issue
Block a user