Skip to content

Commit

Permalink
r0.5.2 fix
Browse files Browse the repository at this point in the history
Merge pull request #41 from qbic-pipelines/dev
  • Loading branch information
HomoPolyethylen authored Jul 17, 2024
2 parents aaf73ed + b4c1a11 commit 6ae1c16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion querynator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Top-level package for querynator."""

import importlib.metadata as importlib_metadata

__author__ = """Susanne Jodoin, Mark Polster & Niclas Grote"""
__email__ = (
"susanne.jodoin@qbic.uni-tuebingen.de | mark.polster@uni-tuebingen.de | niclas.grote@student.uni-tuebingen.de"
)
__version__ = "0.5.1"
__version__ = importlib_metadata.version(__name__)
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from setuptools import find_packages, setup

VERSION = "0.5.2"

with open("README.rst") as readme_file:
readme = readme_file.read()

Expand Down Expand Up @@ -46,6 +48,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/qbic-pipelines/querynator",
version="0.5.1",
version=VERSION,
zip_safe=False,
)

0 comments on commit 6ae1c16

Please # to comment.