Skip to content

Commit

Permalink
Merge pull request #255 from theislab/metaclass_bug
Browse files Browse the repository at this point in the history
Metaclass bug
  • Loading branch information
LouisK92 committed Feb 27, 2023
2 parents b617210 + 5bbf700 commit a6f76d2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .cookietemple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name-template: "0.1.1 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.1.1 # <<COOKIETEMPLE_FORCE_BUMP>>
name-template: "0.1.2 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.1.2 # <<COOKIETEMPLE_FORCE_BUMP>>
categories:
- title: "🚀 Features"
labels:
Expand Down
2 changes: 1 addition & 1 deletion cookietemple.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.1.2

[bumpversion_files_whitelisted]
init_file = spapros/__init__.py
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spapros"
version = "0.1.1" # <<COOKIETEMPLE_FORCE_BUMP>>
version = "0.1.2" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "Probe set selection for targeted spatial transcriptomics."
authors = ["Lukas Heumos <lukas.heumos@posteo.net>", "Louis Kümmerle <louis.kuemmerle@helmholtz-muenchen.de>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion spapros/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
3 changes: 1 addition & 2 deletions spapros/plotting/_masked_dotplot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from abc import ABC
from typing import Literal
from typing import Mapping
from typing import Optional
Expand All @@ -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"""


Expand Down

0 comments on commit a6f76d2

Please sign in to comment.