diff --git a/api-openbis-python3-pybis/src/python/CHANGELOG.md b/api-openbis-python3-pybis/src/python/CHANGELOG.md index 929e4f1597ee1f2883c6ed08fe02baf2e68cc119..a39d46450b1e446a32537891bf617bee939dab37 100644 --- a/api-openbis-python3-pybis/src/python/CHANGELOG.md +++ b/api-openbis-python3-pybis/src/python/CHANGELOG.md @@ -1,3 +1,7 @@ +## Changes with pybis-1.35.4 + +- Changes to internal implementation of data set download/upload to use OpenBIS V3 API + ## Changes with pybis-1.35.3 - Modified set_token() method to accept PersonalAccessToken object diff --git a/api-openbis-python3-pybis/src/python/README.md b/api-openbis-python3-pybis/src/python/README.md index b9a7e453aaa8c7dc116de9d352475d4fee38c321..0100f86d3ec086e3fb7b464963a24dc0412ade9f 100644 --- a/api-openbis-python3-pybis/src/python/README.md +++ b/api-openbis-python3-pybis/src/python/README.md @@ -139,7 +139,7 @@ You may also use permId directly: ```python pat = o.get_or_create_personal_access_token(sessionName="Project A") -o.set_token(pat.permId, save_token=True) +o.set_token(pat.permId, save_token=True) ``` **Note:** If there is an existing PAT with the same _sessionName_ which is still valid and the validity is within the warning period (defined by the server), then this existing PAT is returned instead. However, you can enforce creating a new PAT by passing the argument `force=True`. diff --git a/api-openbis-python3-pybis/src/python/pybis/__init__.py b/api-openbis-python3-pybis/src/python/pybis/__init__.py index 707a73639de3c3aadbc452bf4cb1de1de2fc419e..3956728e2d33bb3d9984d8f6eea4b83b3c98dbe3 100644 --- a/api-openbis-python3-pybis/src/python/pybis/__init__.py +++ b/api-openbis-python3-pybis/src/python/pybis/__init__.py @@ -15,7 +15,7 @@ name = "pybis" __author__ = "ID SIS • ETH Zürich" __email__ = "openbis-support@id.ethz.ch" -__version__ = "1.35.3" +__version__ = "1.35.4rc1" from . import pybis from .pybis import DataSet diff --git a/api-openbis-python3-pybis/src/python/setup.cfg b/api-openbis-python3-pybis/src/python/setup.cfg index 27ea68ad82436289e2aa1a7b432b05f3792064d8..0ed57517007935ead08457c7520c1f6eced32020 100644 --- a/api-openbis-python3-pybis/src/python/setup.cfg +++ b/api-openbis-python3-pybis/src/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = PyBIS -version = 1.35.3 +version = 1.35.4rc1 author = ID SIS • ETH Zürich author_email = openbis-support@id.ethz.ch license = Apache Software License Version 2.0 diff --git a/api-openbis-python3-pybis/src/python/setup.py b/api-openbis-python3-pybis/src/python/setup.py index a1f1caea1c21dfd6a822799e017b0e4718faf785..13bf0a77a67615bfc0e29cc12a2f1389305e7b51 100644 --- a/api-openbis-python3-pybis/src/python/setup.py +++ b/api-openbis-python3-pybis/src/python/setup.py @@ -26,7 +26,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="PyBIS", - version="1.35.3", + version="1.35.4rc1", author="ID SIS • ETH Zürich", author_email="openbis-support@id.ethz.ch", description="openBIS connection and interaction, optimized for using with Jupyter",