Skip to content

Commit

Permalink
ENH: add atleast_nd
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascolley committed Sep 20, 2024
1 parent da635ca commit 60efb68
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 3 deletions.
67 changes: 66 additions & 1 deletion pixi.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,20 @@ classifiers = [
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = []
dependencies = [
"array-api-compat",
]

[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov >=3",
"array-api-strict",
]
dev = [
"pytest >=6",
"pytest-cov >=3",
"array-api-strict",
"ruff",
"pylint",
]
Expand Down
4 changes: 3 additions & 1 deletion src/array_api_extra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from __future__ import annotations

from ._funcs import atleast_nd

__version__ = "0.1.dev0"

__all__ = ["__version__"]
__all__ = ["__version__", "atleast_nd"]
Loading

0 comments on commit 60efb68

Please sign in to comment.