Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"

[project]
name = "numtype"
version = "2.3.0.0.dev0"
version = "2.3.1.0.dev0"
description = "Experimental Typing Stubs for NumPy"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -37,7 +37,7 @@ requires-python = ">=3.11"
dependencies = []

[project.optional-dependencies]
numpy = ["numpy>=2.3.0,<2.4"]
numpy = ["numpy>=2.3.1,<2.4"]

[project.urls]
Homepage = "https://numpy.org/"
Expand All @@ -48,10 +48,10 @@ dependencies = []

[dependency-groups]
numpy = ["numtype[numpy]"]
lint = ["ruff>=0.11.13"]
lint = ["ruff>=0.12.1"]
pytest = [
{include-group = "numpy"},
"pytest>=8.4.0",
"pytest>=8.4.1",
"typing_extensions>=4.14.0",
]
list_and_test = [
Expand All @@ -66,24 +66,24 @@ types = [
basedpyright = [
{include-group = "numpy"},
{include-group = "types"},
"basedpyright>=1.29.4",
"basedpyright>=1.29.5",
]
mypy = [
{include-group = "types"},
"mypy[faster-cache]>=1.16.0",
"mypy[faster-cache]>=1.16.1",
]
typecheck = [
{include-group = "basedpyright"},
{include-group = "mypy"},
]
docs = [
"mkdocs-material>=9.6.14",
"mkdocs-material>=9.6.15",
"mkdocs-awesome-nav>=3.1.2",
"markdown-callouts>=0.4.0",
"mkdocs-include-markdown-plugin>=7.1.5",
"mkdocs-include-markdown-plugin>=7.1.6",
"mkdocs-minify-plugin>=0.8.0",
"mkdocstrings[python]>=0.29.1",
"pygments>=2.19.1",
"pygments>=2.19.2",
]
dev = [
{include-group = "list_and_test"},
Expand Down
2 changes: 2 additions & 0 deletions src/numpy-stubs/testing/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from unittest import TestCase as _TestCase

from . import overrides
from ._private.utils import (
BLAS_SUPPORTS_FPE,
HAS_LAPACK64,
HAS_REFCOUNT,
IS_64BIT,
Expand Down Expand Up @@ -52,6 +53,7 @@ from ._private.utils import (
)

__all__ = [
"BLAS_SUPPORTS_FPE",
"HAS_LAPACK64",
"HAS_REFCOUNT",
"IS_64BIT",
Expand Down
4 changes: 3 additions & 1 deletion src/numpy-stubs/testing/_private/utils.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ from numpy._typing import (
)

__all__ = [
"BLAS_SUPPORTS_FPE",
"HAS_LAPACK64",
"HAS_REFCOUNT",
"IS_64BIT",
Expand Down Expand Up @@ -114,14 +115,15 @@ _NumericArrayLike: TypeAlias = _ArrayLikeNumber_co | _ArrayLikeObject_co

verbose: int = 0
NUMPY_ROOT: Final[Path] = ...
IS_64BIT: Final[bool] = ...
IS_64BIT: Final = True
IS_INSTALLED: Final[bool] = ...
IS_EDITABLE: Final[bool] = ...
IS_MUSL: Final[bool] = ...
IS_PYPY: Final[bool] = ...
IS_PYSTON: Final[bool] = ...
IS_WASM: Final[bool] = ...
HAS_REFCOUNT: Final[bool] = ...
BLAS_SUPPORTS_FPE: Final = True
HAS_LAPACK64: Final[bool] = ...
NOGIL_BUILD: Final[bool] = ...

Expand Down
Loading