diff --git a/build.sh b/build.sh index a756493..5901a95 100755 --- a/build.sh +++ b/build.sh @@ -2,8 +2,8 @@ python setup.py sdist #python setup.py sdist --manifest-only python setup.py bdist_wheel --universal -#twine upload --repository-url https://test.pypi.org/legacy/ dist/cytocipher-0.1.15.tar.gz -twine upload dist/cytocipher-0.1.15.tar.gz +#twine upload --repository-url https://test.pypi.org/legacy/ dist/cytocipher-0.1.20.tar.gz +twine upload dist/cytocipher-0.1.20.tar.gz ### Downloading for test ## Instructions from: https://stackoverflow.com/questions/34514703/pip-install-from-pypi-works-but-from-testpypi-fails-cannot-find-requirements diff --git a/cytocipher/__init__.py b/cytocipher/__init__.py index 8523215..d65062b 100644 --- a/cytocipher/__init__.py +++ b/cytocipher/__init__.py @@ -2,7 +2,7 @@ __author__ = """Brad Balderson""" __email__ = "brad.balderson@uqconnect.edu.au" -__version__ = "0.1.15" +__version__ = "0.1.20" from . import tl from . import pl diff --git a/setup.py b/setup.py index 0c396a8..ded0c8f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cytocipher', - version='0.1.15', + version='0.1.20', description='Cluster significance analysis in scRNA-seq', url='https://github.com/BradBalderson/Cytocipher', author='Brad Balderson',