Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
d0c883c7
Commit
d0c883c7
authored
3 years ago
by
Swen Vermeul
Browse files
Options
Downloads
Patches
Plain Diff
bumped version to 1.20.0
parent
be645997
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pybis/src/python/CHANGELOG.md
+9
-0
9 additions, 0 deletions
pybis/src/python/CHANGELOG.md
pybis/src/python/pybis/__init__.py
+4
-4
4 additions, 4 deletions
pybis/src/python/pybis/__init__.py
pybis/src/python/setup.py
+16
-16
16 additions, 16 deletions
pybis/src/python/setup.py
with
29 additions
and
20 deletions
pybis/src/python/CHANGELOG.md
+
9
−
0
View file @
d0c883c7
## 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
...
...
This diff is collapsed.
Click to expand it.
pybis/src/python/pybis/__init__.py
+
4
−
4
View file @
d0c883c7
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
...
...
This diff is collapsed.
Click to expand it.
pybis/src/python/setup.py
+
16
−
16
View file @
d0c883c7
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
=
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment