diff --git a/pyproject.toml b/pyproject.toml index 5c156af..647da8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yunta" -version = "0.0.1" +version = "0.0.1.post1" authors = [ { name="Eachan Johnson", email="eachan.johnson@crick.ac.uk" }, ] @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ] diff --git a/yunta/cli.py b/yunta/cli.py index fad1c30..3c11a1e 100644 --- a/yunta/cli.py +++ b/yunta/cli.py @@ -1,6 +1,6 @@ """Command-line interface for sppid.""" -__version__ = '0.0.1' +__version__ = '0.0.1.post1' from typing import Any, Mapping, Optional, Tuple, Union