Skip to content

fix(deps): better automatic version handling #15

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

Merged
merged 1 commit into from
Jun 7, 2023
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
6 changes: 4 additions & 2 deletions cosmoplots/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from .figure_defs import *
from importlib_metadata import version

from .axes import *
from .colors import *
from .figure_defs import *

__version__ = "0.1.6"
__version__ = version(__package__)
36 changes: 21 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cosmoplots"
version = "0.2.0"
version = "0.2.1"
description = "Routines to get a sane default configuration for production quality plots."
homepage = "https://github.com/uit-cosmo/cosmoplots"
authors = ["gregordecristoforo <[email protected]>"]
Expand All @@ -11,6 +11,7 @@ readme = 'README.md'
python = ">=3.8"
numpy = ">=1.15.0"
matplotlib = ">=3.3.2"
importlib-metadata = "^6.6.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down