Skip to content

Commit

Permalink
fix: remove broken usage of dunamai
Browse files Browse the repository at this point in the history
  • Loading branch information
jrs65 committed Nov 9, 2023
1 parent 5a36e33 commit 08beac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions prym/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
from datetime import datetime
from typing import Any

import dunamai as _dunamai
import numpy as np
import pandas as pd
import requests

__version__ = _dunamai.Version.from_any_vcs().serialize(dirty=True)
__version__ = "2023.11.0"

# Get a logger object
logger = logging.getLogger(__name__)
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ dependencies = [
"requests",
"numpy",
"pandas",
"dunamai",
]
dynamic = ["version"]

[tool.setuptools]
packages = ["prym"]

[tool.setuptools.dynamic]
version = {attr = "prym.__version__"}

[tool.ruff]
select = ["ALL"]
ignore = [
Expand Down

0 comments on commit 08beac3

Please sign in to comment.