numpy2 2.4.0__tar.gz → 2.4.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.
Files changed (28) hide show
  1. {numpy2-2.4.0/numpy2.egg-info → numpy2-2.4.1}/PKG-INFO +3 -3
  2. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/__init__.py +1 -1
  3. {numpy2-2.4.0 → numpy2-2.4.1/numpy2.egg-info}/PKG-INFO +3 -3
  4. {numpy2-2.4.0 → numpy2-2.4.1}/pyproject.toml +54 -15
  5. {numpy2-2.4.0 → numpy2-2.4.1}/setup.py +54 -15
  6. {numpy2-2.4.0 → numpy2-2.4.1}/CONTRIBUTING.md +0 -0
  7. {numpy2-2.4.0 → numpy2-2.4.1}/LICENSE +0 -0
  8. {numpy2-2.4.0 → numpy2-2.4.1}/MANIFEST.in +0 -0
  9. {numpy2-2.4.0 → numpy2-2.4.1}/README.md +0 -0
  10. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/advanced.py +0 -0
  11. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/array.py +0 -0
  12. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/compat.py +0 -0
  13. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/converters.py +0 -0
  14. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/core.py +0 -0
  15. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/dtypes.py +0 -0
  16. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/fft.py +0 -0
  17. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/integrations.py +0 -0
  18. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/linalg.py +0 -0
  19. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/math_ops.py +0 -0
  20. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2/random.py +0 -0
  21. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2.egg-info/SOURCES.txt +0 -0
  22. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2.egg-info/dependency_links.txt +0 -0
  23. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2.egg-info/not-zip-safe +0 -0
  24. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2.egg-info/requires.txt +0 -0
  25. {numpy2-2.4.0 → numpy2-2.4.1}/numpy2.egg-info/top_level.txt +0 -0
  26. {numpy2-2.4.0 → numpy2-2.4.1}/setup.cfg +0 -0
  27. {numpy2-2.4.0 → numpy2-2.4.1}/tests/test_compat.py +0 -0
  28. {numpy2-2.4.0 → numpy2-2.4.1}/tests/test_core.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: numpy2
3
- Version: 2.4.0
4
- Summary: Pure-Python NumPy drop-in: full NumPy API + JSON serialization, array compression, pipeline transforms, schema validation, zero dependencies
3
+ Version: 2.4.1
4
+ Summary: numpy2: Pure-Python NumPy drop-in replacement with zero dependencies. Fixes numpy JSON serialization errors, broadcasting confusion with named dimensions, NaN/Inf handling, thread safety, JAX-style vmapped vectorization, array caching, compression, pipelines, validation, scan operations, lazy arrays, and seamless web framework integration for FastAPI, Flask, and Django. Drop-in import: numpy2 as np
5
5
  Home-page: https://github.com/maheshmakvana/numpy2
6
6
  Author: Mahesh Makvana
7
7
  Author-email: Mahesh Makvana <mahesh.makvana@example.com>
@@ -10,7 +10,7 @@ Project-URL: Homepage, https://github.com/maheshmakvana/numpy2
10
10
  Project-URL: Bug Tracker, https://github.com/maheshmakvana/numpy2/issues
11
11
  Project-URL: Documentation, https://github.com/maheshmakvana/numpy2/wiki
12
12
  Project-URL: Source Code, https://github.com/maheshmakvana/numpy2
13
- Keywords: numpy,numpy2,numpy drop-in,numpy replacement,pure python numpy,json serialization,numpy json,fastapi numpy,flask numpy,django numpy,web api numpy,array compression,array cache,array pipeline,array validation,sliding window,batch processing numpy,streaming array,pandas,data-science,type-conversion,rest-api,ndarray,linear algebra,fft,random,numerical computing,scientific computing,int64 json,numpy serializable,object of type int64 is not json serializable,numpy web framework,numpy fastapi
13
+ Keywords: numpy,numpy2,numpy drop-in,numpy replacement,numpy alternative,pure python numpy,json serialization numpy,numpy json serializable,numpy to json,ndarray json,numpy not json serializable,object of type int64 is not json serializable,typeerror object of type ndarray is not json serializable,numpy json encoder,numpy json decoder,numpy nan json,numpy inf json,numpy float nan,fastapi numpy,flask numpy,django numpy,web api numpy,numpy rest api,numpy web framework,numpy broadcasting,named dimensions,numpy named array,numpy vmap,numpy vectorize,numpy batch operations,numpy scan operation,numpy cumulative state,numpy lazy evaluation,numpy lazy array,numpy thread safety,numpy free threaded python,numpy thread safe array,array compression,numpy compress array,array cache,numpy cache,array pipeline,numpy pipeline,array validation,numpy validate array,sliding window numpy,batch processing numpy,streaming array,numpy chunked,numpy large array,numpy memory usage,numpy memory efficient,numpy compat layer,numpy deprecated functions,numpy removed api,numpy trapz alternative,numpy in1d alternative,numpy einsum enhanced,numpy explicit broadcast,pandas,data-science,data science,numerical computing,scientific computing,linear algebra,fft,random,ndarray,numpy profiling,numpy describe,type conversion numpy,numpy auto type convert
14
14
  Classifier: Development Status :: 5 - Production/Stable
15
15
  Classifier: Environment :: Web Environment
16
16
  Classifier: Intended Audience :: Developers
@@ -15,7 +15,7 @@ NumPy is used as an optional accelerator when installed; if it is absent
15
15
  every operation runs in pure Python.
16
16
  """
17
17
 
18
- __version__ = "2.4.0"
18
+ __version__ = "2.4.1"
19
19
  __author__ = "Mahesh Makvana"
20
20
  __email__ = "mahesh.makvana@example.com"
21
21
  __license__ = "MIT"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: numpy2
3
- Version: 2.4.0
4
- Summary: Pure-Python NumPy drop-in: full NumPy API + JSON serialization, array compression, pipeline transforms, schema validation, zero dependencies
3
+ Version: 2.4.1
4
+ Summary: numpy2: Pure-Python NumPy drop-in replacement with zero dependencies. Fixes numpy JSON serialization errors, broadcasting confusion with named dimensions, NaN/Inf handling, thread safety, JAX-style vmapped vectorization, array caching, compression, pipelines, validation, scan operations, lazy arrays, and seamless web framework integration for FastAPI, Flask, and Django. Drop-in import: numpy2 as np
5
5
  Home-page: https://github.com/maheshmakvana/numpy2
6
6
  Author: Mahesh Makvana
7
7
  Author-email: Mahesh Makvana <mahesh.makvana@example.com>
@@ -10,7 +10,7 @@ Project-URL: Homepage, https://github.com/maheshmakvana/numpy2
10
10
  Project-URL: Bug Tracker, https://github.com/maheshmakvana/numpy2/issues
11
11
  Project-URL: Documentation, https://github.com/maheshmakvana/numpy2/wiki
12
12
  Project-URL: Source Code, https://github.com/maheshmakvana/numpy2
13
- Keywords: numpy,numpy2,numpy drop-in,numpy replacement,pure python numpy,json serialization,numpy json,fastapi numpy,flask numpy,django numpy,web api numpy,array compression,array cache,array pipeline,array validation,sliding window,batch processing numpy,streaming array,pandas,data-science,type-conversion,rest-api,ndarray,linear algebra,fft,random,numerical computing,scientific computing,int64 json,numpy serializable,object of type int64 is not json serializable,numpy web framework,numpy fastapi
13
+ Keywords: numpy,numpy2,numpy drop-in,numpy replacement,numpy alternative,pure python numpy,json serialization numpy,numpy json serializable,numpy to json,ndarray json,numpy not json serializable,object of type int64 is not json serializable,typeerror object of type ndarray is not json serializable,numpy json encoder,numpy json decoder,numpy nan json,numpy inf json,numpy float nan,fastapi numpy,flask numpy,django numpy,web api numpy,numpy rest api,numpy web framework,numpy broadcasting,named dimensions,numpy named array,numpy vmap,numpy vectorize,numpy batch operations,numpy scan operation,numpy cumulative state,numpy lazy evaluation,numpy lazy array,numpy thread safety,numpy free threaded python,numpy thread safe array,array compression,numpy compress array,array cache,numpy cache,array pipeline,numpy pipeline,array validation,numpy validate array,sliding window numpy,batch processing numpy,streaming array,numpy chunked,numpy large array,numpy memory usage,numpy memory efficient,numpy compat layer,numpy deprecated functions,numpy removed api,numpy trapz alternative,numpy in1d alternative,numpy einsum enhanced,numpy explicit broadcast,pandas,data-science,data science,numerical computing,scientific computing,linear algebra,fft,random,ndarray,numpy profiling,numpy describe,type conversion numpy,numpy auto type convert
14
14
  Classifier: Development Status :: 5 - Production/Stable
15
15
  Classifier: Environment :: Web Environment
16
16
  Classifier: Intended Audience :: Developers
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "numpy2"
7
- version = "2.4.0"
8
- description = "Pure-Python NumPy drop-in: full NumPy API + JSON serialization, array compression, pipeline transforms, schema validation, zero dependencies"
7
+ version = "2.4.1"
8
+ description = "numpy2: Pure-Python NumPy drop-in replacement with zero dependencies. Fixes numpy JSON serialization errors, broadcasting confusion with named dimensions, NaN/Inf handling, thread safety, JAX-style vmapped vectorization, array caching, compression, pipelines, validation, scan operations, lazy arrays, and seamless web framework integration for FastAPI, Flask, and Django. Drop-in import: numpy2 as np"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
11
11
  license = {text = "MIT"}
@@ -18,35 +18,74 @@ keywords = [
18
18
  "numpy2",
19
19
  "numpy drop-in",
20
20
  "numpy replacement",
21
+ "numpy alternative",
21
22
  "pure python numpy",
22
- "json serialization",
23
- "numpy json",
23
+ "json serialization numpy",
24
+ "numpy json serializable",
25
+ "numpy to json",
26
+ "ndarray json",
27
+ "numpy not json serializable",
28
+ "object of type int64 is not json serializable",
29
+ "typeerror object of type ndarray is not json serializable",
30
+ "numpy json encoder",
31
+ "numpy json decoder",
32
+ "numpy nan json",
33
+ "numpy inf json",
34
+ "numpy float nan",
24
35
  "fastapi numpy",
25
36
  "flask numpy",
26
37
  "django numpy",
27
38
  "web api numpy",
39
+ "numpy rest api",
40
+ "numpy web framework",
41
+ "numpy broadcasting",
42
+ "named dimensions",
43
+ "numpy named array",
44
+ "numpy vmap",
45
+ "numpy vectorize",
46
+ "numpy batch operations",
47
+ "numpy scan operation",
48
+ "numpy cumulative state",
49
+ "numpy lazy evaluation",
50
+ "numpy lazy array",
51
+ "numpy thread safety",
52
+ "numpy free threaded python",
53
+ "numpy thread safe array",
28
54
  "array compression",
55
+ "numpy compress array",
29
56
  "array cache",
57
+ "numpy cache",
30
58
  "array pipeline",
59
+ "numpy pipeline",
31
60
  "array validation",
32
- "sliding window",
61
+ "numpy validate array",
62
+ "sliding window numpy",
33
63
  "batch processing numpy",
34
64
  "streaming array",
65
+ "numpy chunked",
66
+ "numpy large array",
67
+ "numpy memory usage",
68
+ "numpy memory efficient",
69
+ "numpy compat layer",
70
+ "numpy deprecated functions",
71
+ "numpy removed api",
72
+ "numpy trapz alternative",
73
+ "numpy in1d alternative",
74
+ "numpy einsum enhanced",
75
+ "numpy explicit broadcast",
35
76
  "pandas",
36
77
  "data-science",
37
- "type-conversion",
38
- "rest-api",
39
- "ndarray",
78
+ "data science",
79
+ "numerical computing",
80
+ "scientific computing",
40
81
  "linear algebra",
41
82
  "fft",
42
83
  "random",
43
- "numerical computing",
44
- "scientific computing",
45
- "int64 json",
46
- "numpy serializable",
47
- "object of type int64 is not json serializable",
48
- "numpy web framework",
49
- "numpy fastapi",
84
+ "ndarray",
85
+ "numpy profiling",
86
+ "numpy describe",
87
+ "type conversion numpy",
88
+ "numpy auto type convert",
50
89
  ]
51
90
 
52
91
  classifiers = [
@@ -15,10 +15,10 @@ long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists
15
15
 
16
16
  setup(
17
17
  name="numpy2",
18
- version="2.4.0",
18
+ version="2.4.1",
19
19
  author="Mahesh Makvana",
20
20
  author_email="mahesh.makvana@example.com",
21
- description="Pure-Python NumPy drop-in: full NumPy API + JSON serialization, array compression, pipeline transforms, schema validation, zero dependencies",
21
+ description="numpy2: Pure-Python NumPy drop-in replacement with zero dependencies. Fixes numpy JSON serialization errors, broadcasting confusion with named dimensions, NaN/Inf handling, thread safety, JAX-style vmapped vectorization, array caching, compression, pipelines, validation, scan operations, lazy arrays, and seamless web framework integration for FastAPI, Flask, and Django. Drop-in import: numpy2 as np",
22
22
  long_description=long_description,
23
23
  long_description_content_type="text/markdown",
24
24
  url="https://github.com/maheshmakvana/numpy2",
@@ -69,35 +69,74 @@ setup(
69
69
  "numpy2",
70
70
  "numpy drop-in",
71
71
  "numpy replacement",
72
+ "numpy alternative",
72
73
  "pure python numpy",
73
- "json serialization",
74
- "numpy json",
74
+ "json serialization numpy",
75
+ "numpy json serializable",
76
+ "numpy to json",
77
+ "ndarray json",
78
+ "numpy not json serializable",
79
+ "object of type int64 is not json serializable",
80
+ "typeerror object of type ndarray is not json serializable",
81
+ "numpy json encoder",
82
+ "numpy json decoder",
83
+ "numpy nan json",
84
+ "numpy inf json",
85
+ "numpy float nan",
75
86
  "fastapi numpy",
76
87
  "flask numpy",
77
88
  "django numpy",
78
89
  "web api numpy",
90
+ "numpy rest api",
91
+ "numpy web framework",
92
+ "numpy broadcasting",
93
+ "named dimensions",
94
+ "numpy named array",
95
+ "numpy vmap",
96
+ "numpy vectorize",
97
+ "numpy batch operations",
98
+ "numpy scan operation",
99
+ "numpy cumulative state",
100
+ "numpy lazy evaluation",
101
+ "numpy lazy array",
102
+ "numpy thread safety",
103
+ "numpy free threaded python",
104
+ "numpy thread safe array",
79
105
  "array compression",
106
+ "numpy compress array",
80
107
  "array cache",
108
+ "numpy cache",
81
109
  "array pipeline",
110
+ "numpy pipeline",
82
111
  "array validation",
83
- "sliding window",
112
+ "numpy validate array",
113
+ "sliding window numpy",
84
114
  "batch processing numpy",
85
115
  "streaming array",
116
+ "numpy chunked",
117
+ "numpy large array",
118
+ "numpy memory usage",
119
+ "numpy memory efficient",
120
+ "numpy compat layer",
121
+ "numpy deprecated functions",
122
+ "numpy removed api",
123
+ "numpy trapz alternative",
124
+ "numpy in1d alternative",
125
+ "numpy einsum enhanced",
126
+ "numpy explicit broadcast",
86
127
  "pandas",
87
128
  "data-science",
88
- "type-conversion",
89
- "rest-api",
90
- "ndarray",
129
+ "data science",
130
+ "numerical computing",
131
+ "scientific computing",
91
132
  "linear algebra",
92
133
  "fft",
93
134
  "random",
94
- "numerical computing",
95
- "scientific computing",
96
- "int64 json",
97
- "numpy serializable",
98
- "object of type int64 is not json serializable",
99
- "numpy web framework",
100
- "numpy fastapi",
135
+ "ndarray",
136
+ "numpy profiling",
137
+ "numpy describe",
138
+ "type conversion numpy",
139
+ "numpy auto type convert",
101
140
  ],
102
141
  zip_safe=False,
103
142
  )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes