Skip to content

Commit

Permalink
Merge pull request #81 from ECCCO-mission/improve-versioning
Browse files Browse the repository at this point in the history
improve version linking
  • Loading branch information
jmbhughes authored Jul 24, 2024
2 parents 1f25279 + 4168993 commit 96fe742
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
from overlappogram import __version__

project = "overlappogram"
copyright = "2024, J. Marcus Hughes, Dyana Beabout"
author = "J. Marcus Hughes, Dyana Beabout"
release = "0.0.8"
release = __version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 4 additions & 0 deletions overlappogram/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import importlib.metadata

from overlappogram.cli import unfold
from overlappogram.inversion import Inverter
from overlappogram.io import load_overlappogram, load_response_cube

__version__ = importlib.metadata.version("overlappogram")

__all__ = ["Inverter", "load_overlappogram", "load_response_cube"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["setuptools",

[project]
name = "overlappogram"
version = "0.0.8"
version = "0.0.9"
dependencies = ["numpy<2.0.0",
"astropy",
"scikit-learn",
Expand Down

0 comments on commit 96fe742

Please sign in to comment.