types-array-api 1.1.0__tar.gz → 1.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {types_array_api-1.1.0/src/types_array_api.egg-info → types_array_api-1.1.1}/PKG-INFO +2 -1
- {types_array_api-1.1.0 → types_array_api-1.1.1}/pyproject.toml +2 -1
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/_2022_12.py +1669 -1670
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/_2023_12.py +1855 -1835
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/_2024_12.py +1942 -1922
- types_array_api-1.1.1/src/array_api/__init__.py +1 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/_draft.py +2031 -2021
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/cli/_main.py +26 -37
- types_array_api-1.1.1/src/array_api_compat/__init__.pyi +11 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1/src/types_array_api.egg-info}/PKG-INFO +2 -1
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/types_array_api.egg-info/requires.txt +1 -0
- types_array_api-1.1.0/src/array_api/__init__.py +0 -1
- types_array_api-1.1.0/src/array_api_compat/__init__.pyi +0 -9
- {types_array_api-1.1.0 → types_array_api-1.1.1}/LICENSE +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/LICENSE-MIT +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/README.md +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/setup.cfg +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/setup.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/__main__.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/cli/__init__.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/cli/cli.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/array_api/py.typed +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/types_array_api.egg-info/SOURCES.txt +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/types_array_api.egg-info/dependency_links.txt +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/types_array_api.egg-info/entry_points.txt +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/src/types_array_api.egg-info/top_level.txt +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/tests/test_cli.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/tests/test_dunder_main.py +0 -0
- {types_array_api-1.1.0 → types_array_api-1.1.1}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-array-api
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Typing for array API and array-api-compat
|
|
5
5
|
Author-email: 34j <34j.95a2p@simplelogin.com>
|
|
6
6
|
License-Expression: MIT AND Apache-2.0
|
|
@@ -25,6 +25,7 @@ License-File: LICENSE-MIT
|
|
|
25
25
|
Requires-Dist: attrs>=25.3.0
|
|
26
26
|
Requires-Dist: rich>=10
|
|
27
27
|
Requires-Dist: typer<1,>=0.15
|
|
28
|
+
Requires-Dist: typing-extensions>=4.14.0
|
|
28
29
|
Dynamic: license-file
|
|
29
30
|
|
|
30
31
|
# Python array API standard typing
|
|
@@ -4,7 +4,7 @@ requires = [ "setuptools" ]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "types-array-api"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.1"
|
|
8
8
|
description = "Typing for array API and array-api-compat"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT AND Apache-2.0"
|
|
@@ -29,6 +29,7 @@ dependencies = [
|
|
|
29
29
|
"attrs>=25.3.0",
|
|
30
30
|
"rich>=10",
|
|
31
31
|
"typer>=0.15,<1",
|
|
32
|
+
"typing-extensions>=4.14.0",
|
|
32
33
|
]
|
|
33
34
|
urls."Bug Tracker" = "https://github.com/34j/types-array-api/issues"
|
|
34
35
|
urls.Changelog = "https://github.com/34j/types-array-api/blob/main/CHANGELOG.md"
|