Skip to content

Commit

Permalink
Update version to 0.9.7 and improve formatting in pyproject.toml; add…
Browse files Browse the repository at this point in the history
… version retrieval in __init__.py
  • Loading branch information
legout committed Feb 20, 2025
1 parent 7b78f52 commit bbb7ed5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions pydala/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import importlib.metadata

__version__ = importlib.metadata.version("pydala2")
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
authors = [{name = "Volker L.", email = "ligno.blades@gmail.com"}]
authors = [{ name = "Volker L.", email = "ligno.blades@gmail.com" }]
dependencies = [
"pyarrow>=12.0.1",
"s3fs>=2023.6.0",
"duckdb>=0.10.0",
"tqdm>=4.65.0",
"joblib>=1.3.2",
"pandas>=2.0.3",
"pendulum>=2.1.2", #"msgspec>=0.18.4",
"pendulum>=2.1.2", #"msgspec>=0.18.4",
"munch>=4.0.0",
"sqlglot>=23.11.2",
"sqlparse>=0.5.0",
Expand All @@ -18,20 +18,20 @@ dependencies = [
]
description = "poor man´s data lake"
#homepage = "https://github.com/legout/pydala2"
license = {text = "MIT"}
name = "pydala2"
readme = "README.md"
license = { text = "MIT" }
name = "pydala2"
readme = "README.md"
#repository = "https://github.com/legout/pydala2"
requires-python = ">= 3.10"
version = "0.9.6"
version = "0.9.7"

[project.optional-dependencies]
legacy = ["polars-lts-cpu>=0.20.4"]
legacy = ["polars-lts-cpu>=0.20.4"]
standard = ["polars>=0.20.4"]

[build-system]
build-backend = "hatchling.build"
requires = ["hatchling==1.26.3", "hatch-vcs"]
requires = ["hatchling==1.26.3", "hatch-vcs"]

# [build-system]
# build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit bbb7ed5

Please sign in to comment.