Skip to content

Commit

Permalink
Merge pull request #139 from pastas/dev
Browse files Browse the repository at this point in the history
fix to install extensions
  • Loading branch information
dbrakenhoff authored Oct 3, 2024
2 parents ea13afe + 5ee20a2 commit 5f4739e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pastastore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ruff: noqa: F401 D104
from pastastore import connectors, styling, util
from pastastore import connectors, extensions, styling, util
from pastastore.connectors import (
ArcticDBConnector,
DictConnector,
Expand Down
2 changes: 1 addition & 1 deletion pastastore/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
PASTAS_LEQ_022 = PASTAS_VERSION <= parse_version("0.22.0")
PASTAS_GEQ_150 = PASTAS_VERSION >= parse_version("1.5.0")

__version__ = "1.7.0"
__version__ = "1.7.1"


def show_versions(optional=False) -> None:
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ docs = [
"nbsphinx_link",
]

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

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

Expand Down

0 comments on commit 5f4739e

Please sign in to comment.