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

Merge branch 'release/pybis-1.10.5'

parents e7b65b13 6f4b5ac3
No related branches found
No related tags found
No related merge requests found
## Changes with pybis-1.10.5
* bugfix: creating projects
## Changes with pybis-1.10.4 ## Changes with pybis-1.10.4
* better error messages when downloading files from datastore server * better error messages when downloading files from datastore server
......
name = 'pybis' name = 'pybis'
__author__ = 'Swen Vermeul' __author__ = 'Swen Vermeul'
__email__ = 'swen@ethz.ch' __email__ = 'swen@ethz.ch'
__version__ = '1.10.4' __version__ = '1.10.5'
from . import pybis from . import pybis
from .pybis import Openbis from .pybis import Openbis
......
...@@ -26,6 +26,8 @@ class PropertyHolder(): ...@@ -26,6 +26,8 @@ class PropertyHolder():
def _all_props(self): def _all_props(self):
props = {} props = {}
if not getattr(self, '_type'):
return props
for code in self._type.codes(): for code in self._type.codes():
props[code] = getattr(self, code) props[code] = getattr(self, code)
return props return props
......
...@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh: ...@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name='PyBIS', name='PyBIS',
version= '1.10.4', version= '1.10.5',
author='Swen Vermeul • ID SIS • ETH Zürich', author='Swen Vermeul • ID SIS • ETH Zürich',
author_email='swen@ethz.ch', author_email='swen@ethz.ch',
description='openBIS connection and interaction, optimized for using with Jupyter', 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