From c995f53609daf78c58f7ea9edc5762320711343a Mon Sep 17 00:00:00 2001 From: LouisK92 <37270609+LouisK92@users.noreply.github.com> Date: Mon, 27 Feb 2023 20:42:45 +0100 Subject: [PATCH 1/2] Fix metaclass error #253 --- spapros/plotting/_masked_dotplot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spapros/plotting/_masked_dotplot.py b/spapros/plotting/_masked_dotplot.py index ad010c4..5694d29 100644 --- a/spapros/plotting/_masked_dotplot.py +++ b/spapros/plotting/_masked_dotplot.py @@ -1,4 +1,3 @@ -from abc import ABC from typing import Literal from typing import Mapping from typing import Optional @@ -21,7 +20,7 @@ ColorLike = Union[str, Tuple[float, ...]] -class _AxesSubplot(Axes, axes.SubplotBase, ABC): +class _AxesSubplot(Axes, axes.SubplotBase): """Intersection between Axes and SubplotBase: Has methods of both""" From 5bbf70086189b2de3d50b10c37ba88f54b5ae90a Mon Sep 17 00:00:00 2001 From: LouisK92 <37270609+LouisK92@users.noreply.github.com> Date: Mon, 27 Feb 2023 21:11:41 +0100 Subject: [PATCH 2/2] Bump version from 0.1.1 to 0.1.2 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- spapros/__init__.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index d07e0db..2f371d5 100644 --- a/.cookietemple.yml +++ b/.cookietemple.yml @@ -15,5 +15,5 @@ full_name: Lukas Heumos email: lukas.heumos@posteo.net project_name: spapros project_short_description: Fully automated spatial transcriptomics probe selection. -version: 0.1.1 +version: 0.1.2 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 72482dd..9bd97a9 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.1.1 🌈" # <> -tag-template: 0.1.1 # <> +name-template: "0.1.2 🌈" # <> +tag-template: 0.1.2 # <> categories: - title: "🚀 Features" labels: diff --git a/cookietemple.cfg b/cookietemple.cfg index a9bd167..c80df99 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 [bumpversion_files_whitelisted] init_file = spapros/__init__.py diff --git a/docs/conf.py b/docs/conf.py index c04c204..a6a1446 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -102,9 +102,9 @@ # the built documents. # # The short X.Y version. -version = "0.1.1" +version = "0.1.2" # The full version, including alpha/beta/rc tags. -release = "0.1.1" +release = "0.1.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index f7c216c..81079d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spapros" -version = "0.1.1" # <> +version = "0.1.2" # <> description = "Probe set selection for targeted spatial transcriptomics." authors = ["Lukas Heumos ", "Louis Kümmerle "] license = "MIT" diff --git a/spapros/__init__.py b/spapros/__init__.py index 34091a1..c9a384c 100644 --- a/spapros/__init__.py +++ b/spapros/__init__.py @@ -2,7 +2,7 @@ __author__ = "Lukas Heumos" __email__ = "lukas.heumos@posteo.net" -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = ["se", "ev", "pl", "ut"]