Skip to content

Commit

Permalink
Bump to 5.6.0 release version
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Jan 10, 2020
1 parent 6842ee6 commit e1d03b0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
distributions: sdist bdist_wheel
on:
tags: true
condition: "$TOX = no"
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To install ``omero-py`` using venv::

python3.6 -m venv myenv
. myenv/bin/activate
pip install 'omero-py>=5.6.dev9'
pip install omero-py

You may need to replace ``python3.6`` with ``python`` or ``python3`` depending on your Python distribution.

Expand Down Expand Up @@ -120,7 +120,7 @@ OMERO.py is released under the GPL v2.
Copyright
---------

2009-2019, The Open Microscopy Environment, Glencoe Software, Inc.
2009-2020, The Open Microscopy Environment, Glencoe Software, Inc.

.. _ZeroC IcePy 3.6: https://zeroc.com/downloads/ice/3.6
.. _OMERO.py: https://docs.openmicroscopy.org/omero/5.6/developers/Python.html
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright 2008-2019 The Open Microscopy Environment, Glencoe Software, Inc.
Copyright 2008-2020 The Open Microscopy Environment, Glencoe Software, Inc.
All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
Expand Down Expand Up @@ -192,7 +192,7 @@ def read(fname):
'or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
], # Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand All @@ -206,6 +206,7 @@ def read(fname):
'omero.gateway.scripts': ['imgs/*']},
py_modules=packageless,
scripts=glob.glob(os.path.sep.join(["bin", "*"])),
python_requires='>=3',
install_requires=[
'future',
'numpy',
Expand Down
4 changes: 2 additions & 2 deletions src/omero_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
omero_version = "5.6.dev11"
omero_version = "5.6.0"
ice_compatibility = "3.6.5"
build_year = "2019"
build_year = "2020"

0 comments on commit e1d03b0

Please sign in to comment.