From b0ce30c6c77f8d08989c2c4eef5c8ab6cf6455eb Mon Sep 17 00:00:00 2001
From: alaskowski <alaskowski@ethz.ch>
Date: Thu, 24 Aug 2023 12:01:49 +0200
Subject: [PATCH] SSDM-13911: Added dependency to test version of pybis.
 obis-0.4.4rc2

---
 app-openbis-command-line/src/python/CHANGELOG.md     | 5 +++++
 app-openbis-command-line/src/python/obis/__init__.py | 2 +-
 app-openbis-command-line/src/python/setup.py         | 4 ++--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/app-openbis-command-line/src/python/CHANGELOG.md b/app-openbis-command-line/src/python/CHANGELOG.md
index e73b41de9bd..88b6090ed25 100644
--- a/app-openbis-command-line/src/python/CHANGELOG.md
+++ b/app-openbis-command-line/src/python/CHANGELOG.md
@@ -1,3 +1,8 @@
+# New in version 0.4.4
+
+* Improvements to dataset upload functionality
+* Changed pybis dependency to version == 1.36.2
+
 # New in version 0.4.3
 
 * Changed upload prints to be more readable
diff --git a/app-openbis-command-line/src/python/obis/__init__.py b/app-openbis-command-line/src/python/obis/__init__.py
index 7ae9551f179..6a12c03172c 100644
--- a/app-openbis-command-line/src/python/obis/__init__.py
+++ b/app-openbis-command-line/src/python/obis/__init__.py
@@ -14,6 +14,6 @@
 #
 __author__ = "ID SIS • ETH Zürich"
 __email__ = "openbis-support@id.ethz.ch"
-__version__ = "0.4.3rc1"
+__version__ = "0.4.4rc2"
 
 from .dm import *
diff --git a/app-openbis-command-line/src/python/setup.py b/app-openbis-command-line/src/python/setup.py
index 18334b645aa..55008dfba93 100644
--- a/app-openbis-command-line/src/python/setup.py
+++ b/app-openbis-command-line/src/python/setup.py
@@ -31,7 +31,7 @@ data_files = [
 
 setup(
     name="obis",
-    version="0.4.3",
+    version="0.4.4rc2",
     description="Local data management with assistance from OpenBIS.",
     long_description=long_description,
     long_description_content_type="text/markdown",
@@ -42,7 +42,7 @@ setup(
     packages=["obis", "obis.dm", "obis.dm.commands", "obis.scripts"],
     data_files=data_files,
     package_data={"obis": ["dm/git-annex-attributes"]},
-    install_requires=["pyOpenSSL", "pytest", "pybis==1.36.1", "click"],
+    install_requires=["pyOpenSSL", "pytest", "pybis==1.36.2rc2", "click"],
     entry_points={"console_scripts": ["obis=obis.scripts.cli:main"]},
     zip_safe=False,
     python_requires=">=3.3",
-- 
GitLab