From e1d03b018e818fc7cb4f0b851c86383c1d7f3b4b Mon Sep 17 00:00:00 2001 From: jmoore Date: Fri, 10 Jan 2020 13:29:59 +0100 Subject: [PATCH] Bump to 5.6.0 release version --- .travis.yml | 1 + README.rst | 4 ++-- setup.py | 5 +++-- src/omero_version.py | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b29a419c8..3db390862 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD + distributions: sdist bdist_wheel on: tags: true condition: "$TOX = no" diff --git a/README.rst b/README.rst index e71574792..cb5ca3cb3 100644 --- a/README.rst +++ b/README.rst @@ -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. @@ -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 diff --git a/setup.py b/setup.py index b53d1e4e8..d1a4dce52 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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 @@ -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', diff --git a/src/omero_version.py b/src/omero_version.py index cc111c10e..8a0728550 100644 --- a/src/omero_version.py +++ b/src/omero_version.py @@ -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"