Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix versioning for real #175

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bento/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ._version import __version__
__version__ = "2.1.4.post2"

from . import _utils as ut
from . import geometry as geo
Expand All @@ -7,4 +7,4 @@
from . import datasets as ds
from . import io
from .plotting import _colors as colors
from ._constants import CosMx, Merscope, Xenium
from ._constants import CosMx, Merscope, Xenium
15 changes: 0 additions & 15 deletions bento/_version.py

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "bento-tools"
description = "A toolkit for subcellular analysis of spatial transcriptomics data"
authors = [{ name = "ckmah", email = "[email protected]" }]
dynamic = ["version"]
dependencies = [
"adjusttext>=1.1.1",
"astropy>=6.0.1",
Expand Down Expand Up @@ -30,7 +31,6 @@ dependencies = [
license = "BSD-2-Clause"
readme = "README.md"
requires-python = ">= 3.10"
version = "2.1.4.post1"


[project.optional-dependencies]
Expand Down Expand Up @@ -76,4 +76,4 @@ include = ["bento"]
packages = ["bento"]

[tool.hatch.version]
path = "bento/_version.py"
path = "bento/__init__.py"
Loading