Skip to content

Commit 763b8df

Browse files
committed
[fix]
1 parent dca7605 commit 763b8df

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

polars_random/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,10 @@
55
import polars as pl
66
from polars.plugins import register_plugin_function
77

8-
from polars_random._internal import __version__ as VERSION
9-
10-
__version__ = VERSION
8+
from polars_random._internal import __version__ as __version__
119

1210
LIB = Path(__file__).parent
1311

14-
__all__ = ["sum_as_string"]
15-
1612

1713
@pl.api.register_expr_namespace("random")
1814
class Random:

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ license = { file = "LICENSE" }
1212
readme = "README.md"
1313
dynamic = ["version"]
1414
requires-python = ">=3.9"
15-
dependencies = []
15+
dependencies = [
16+
"polars>=1.19.0",
17+
]
1618

1719
[dependency-groups]
1820
dev = [
@@ -28,7 +30,7 @@ dev = [
2830
]
2931

3032
[tool.maturin]
31-
module-name = "polars_random._polars_random"
33+
module-name = "polars_random._internal"
3234
binding = "pyo3"
3335
features = ["pyo3/extension-module"]
3436

uv.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)