changeset 705:beb7bd0fdf47 attach-custom-data

merge default -> attach-custom-data
author Alain Mazy <am@orthanc.team>
date Fri, 04 Oct 2024 09:00:04 +0200
parents 9af8e3ee07d9 (current diff) 8b255268d79b (diff)
children
files NewTests/requirements.txt
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/NewTests/requirements.txt	Fri Sep 27 15:07:23 2024 +0200
+++ b/NewTests/requirements.txt	Fri Oct 04 09:00:04 2024 +0200
@@ -1,3 +1,3 @@
-orthanc-api-client>=0.16.1
+orthanc-api-client>=0.16.2
 orthanc-tools>=0.13.0
 uvicorn
\ No newline at end of file
--- a/Tests/Toolbox.py	Fri Sep 27 15:07:23 2024 +0200
+++ b/Tests/Toolbox.py	Fri Oct 04 09:00:04 2024 +0200
@@ -344,7 +344,7 @@
 def IsOrthancVersionAbove(orthanc, major, minor, revision):
     v = DoGet(orthanc, '/system')['Version']
 
-    if v == 'mainline':
+    if v.startswith('mainline'):
         return True
     else:
         tmp = v.split('.')