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

bumped version to 1.20.0

parent be645997
No related branches found
No related tags found
No related merge requests found
## Changes with pybis-1.20.0
- metadata for property_types can now be changed to:
- {'custom_widget' : 'Word Processor'}
- {'custom_widget' : 'Spreadsheet'}
- added documentation how to change the ELN settings
- removed deprecated update_sample()
- removed deprecated update_experiment()
## Changes with pybis-1.19.1 ## Changes with pybis-1.19.1
- add set_token() method to set a token and also store it locally - add set_token() method to set a token and also store it locally
......
name = 'pybis' name = "pybis"
__author__ = 'Swen Vermeul' __author__ = "Swen Vermeul"
__email__ = 'swen@ethz.ch' __email__ = "swen@ethz.ch"
__version__ = '1.19.1' __version__ = "1.20.0"
from . import pybis from . import pybis
from .pybis import DataSet from .pybis import DataSet
......
import sys import sys
if sys.version_info < (3,6): if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported') sys.exit("Sorry, Python < 3.6 is not supported")
from setuptools import setup, find_packages from setuptools import setup, find_packages
...@@ -10,24 +10,24 @@ with open("README.md", "r", encoding="utf-8") as fh: ...@@ -10,24 +10,24 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name='PyBIS', name="PyBIS",
version= '1.19.1', version="1.20.0",
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",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url='https://sissource.ethz.ch/sispub/openbis/tree/master/pybis', url="https://sissource.ethz.ch/sispub/openbis/tree/master/pybis",
packages=find_packages(), packages=find_packages(),
license='Apache Software License Version 2.0', license="Apache Software License Version 2.0",
install_requires=[ install_requires=[
'pytest', "pytest",
'requests', "requests",
'datetime', "datetime",
'pandas', "pandas",
'click', "click",
'texttable', "texttable",
'tabulate', "tabulate",
], ],
python_requires=">=3.6", python_requires=">=3.6",
classifiers=[ classifiers=[
......
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