Skip to content
Snippets Groups Projects
Commit ebcc6435 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

Merge branch 'release/pybis-1.10.2'

parents 2b004212 ef76c040
No related branches found
No related tags found
No related merge requests found
## Changes with pybis-1.10.2
* typo bugfix
## Changes with pybis-1.10.1
* fixed a nasty threading bug: open threads are now closed when downloading or uploading datasets
......
name = 'pybis'
__author__ = 'Swen Vermeul'
__email__ = 'swen@ethz.ch'
__version__ = '1.10.1'
__version__ = '1.10.2'
from . import pybis
from .pybis import Openbis
......
......@@ -633,7 +633,7 @@ class DataSetUploadQueue():
"""This method is called at the end of a with statement.
"""
# stop the workers
for i in self.workers:
for i in range(self.workers):
self.upload_queue.put(None)
def put(self, things):
......
......@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name='PyBIS',
version= '1.10.1',
version= '1.10.2',
author='Swen Vermeul • ID SIS • ETH Zürich',
author_email='swen@ethz.ch',
description='openBIS connection and interaction, optimized for using with Jupyter',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment