numpy 2.3.3__cp313-cp313t-win32.whl → 2.3.4__cp313-cp313t-win32.whl
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.
Potentially problematic release.
This version of numpy might be problematic. Click here for more details.
- numpy/__config__.py +4 -4
- numpy/__init__.pyi +819 -218
- numpy/_core/_multiarray_tests.cp313t-win32.lib +0 -0
- numpy/_core/_multiarray_tests.cp313t-win32.pyd +0 -0
- numpy/_core/_multiarray_umath.cp313t-win32.lib +0 -0
- numpy/_core/_multiarray_umath.cp313t-win32.pyd +0 -0
- numpy/_core/_operand_flag_tests.cp313t-win32.lib +0 -0
- numpy/_core/_operand_flag_tests.cp313t-win32.pyd +0 -0
- numpy/_core/_rational_tests.cp313t-win32.lib +0 -0
- numpy/_core/_rational_tests.cp313t-win32.pyd +0 -0
- numpy/_core/_simd.cp313t-win32.lib +0 -0
- numpy/_core/_simd.cp313t-win32.pyd +0 -0
- numpy/_core/_struct_ufunc_tests.cp313t-win32.lib +0 -0
- numpy/_core/_struct_ufunc_tests.cp313t-win32.pyd +0 -0
- numpy/_core/_ufunc_config.py +2 -0
- numpy/_core/_ufunc_config.pyi +52 -6
- numpy/_core/_umath_tests.cp313t-win32.lib +0 -0
- numpy/_core/_umath_tests.cp313t-win32.pyd +0 -0
- numpy/_core/lib/npymath.lib +0 -0
- numpy/_core/lib/pkgconfig/numpy.pc +1 -1
- numpy/_core/numerictypes.py +1 -1
- numpy/_core/tests/test_api.py +34 -1
- numpy/_core/tests/test_numerictypes.py +29 -0
- numpy/_core/tests/test_stringdtype.py +16 -16
- numpy/_core/tests/test_strings.py +15 -0
- numpy/_core/tests/test_umath.py +12 -0
- numpy/exceptions.pyi +2 -0
- numpy/fft/_pocketfft_umath.cp313t-win32.lib +0 -0
- numpy/fft/_pocketfft_umath.cp313t-win32.pyd +0 -0
- numpy/lib/_histograms_impl.pyi +8 -8
- numpy/lib/_index_tricks_impl.pyi +12 -0
- numpy/lib/_polynomial_impl.pyi +10 -8
- numpy/lib/mixins.pyi +2 -0
- numpy/lib/tests/test_index_tricks.py +5 -0
- numpy/linalg/_linalg.pyi +32 -39
- numpy/linalg/_umath_linalg.cp313t-win32.lib +0 -0
- numpy/linalg/_umath_linalg.cp313t-win32.pyd +0 -0
- numpy/linalg/lapack_lite.cp313t-win32.lib +0 -0
- numpy/linalg/lapack_lite.cp313t-win32.pyd +0 -0
- numpy/ma/extras.pyi +4 -0
- numpy/random/_bounded_integers.cp313t-win32.lib +0 -0
- numpy/random/_bounded_integers.cp313t-win32.pyd +0 -0
- numpy/random/_common.cp313t-win32.lib +0 -0
- numpy/random/_common.cp313t-win32.pyd +0 -0
- numpy/random/_generator.cp313t-win32.lib +0 -0
- numpy/random/_generator.cp313t-win32.pyd +0 -0
- numpy/random/_mt19937.cp313t-win32.lib +0 -0
- numpy/random/_mt19937.cp313t-win32.pyd +0 -0
- numpy/random/_pcg64.cp313t-win32.lib +0 -0
- numpy/random/_pcg64.cp313t-win32.pyd +0 -0
- numpy/random/_philox.cp313t-win32.lib +0 -0
- numpy/random/_philox.cp313t-win32.pyd +0 -0
- numpy/random/_sfc64.cp313t-win32.lib +0 -0
- numpy/random/_sfc64.cp313t-win32.pyd +0 -0
- numpy/random/bit_generator.cp313t-win32.lib +0 -0
- numpy/random/bit_generator.cp313t-win32.pyd +0 -0
- numpy/random/lib/npyrandom.lib +0 -0
- numpy/random/mtrand.cp313t-win32.lib +0 -0
- numpy/random/mtrand.cp313t-win32.pyd +0 -0
- numpy/random/tests/test_generator_mt19937.py +5 -0
- numpy/testing/_private/extbuild.pyi +3 -3
- numpy/testing/_private/utils.pyi +1 -1
- numpy/typing/tests/data/fail/bitwise_ops.pyi +3 -3
- numpy/typing/tests/data/fail/scalars.pyi +6 -6
- numpy/typing/tests/data/reveal/arithmetic.pyi +29 -29
- numpy/typing/tests/data/reveal/array_constructors.pyi +5 -5
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +10 -11
- numpy/typing/tests/data/reveal/linalg.pyi +6 -6
- numpy/typing/tests/data/reveal/mod.pyi +18 -19
- numpy/version.py +2 -2
- {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/METADATA +1 -1
- {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/RECORD +75 -76
- numpy/_typing/_callable.pyi +0 -279
- {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/LICENSE.txt +0 -0
- {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/WHEEL +0 -0
- {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/entry_points.txt +0 -0
numpy/__config__.py
CHANGED
|
@@ -33,7 +33,7 @@ CONFIG = _cleanup(
|
|
|
33
33
|
"c": {
|
|
34
34
|
"name": "msvc",
|
|
35
35
|
"linker": r"link",
|
|
36
|
-
"version": "19.44.
|
|
36
|
+
"version": "19.44.35217",
|
|
37
37
|
"commands": r"cl",
|
|
38
38
|
"args": r"",
|
|
39
39
|
"linker args": r"",
|
|
@@ -41,7 +41,7 @@ CONFIG = _cleanup(
|
|
|
41
41
|
"cython": {
|
|
42
42
|
"name": "cython",
|
|
43
43
|
"linker": r"cython",
|
|
44
|
-
"version": "3.1.
|
|
44
|
+
"version": "3.1.4",
|
|
45
45
|
"commands": r"cython",
|
|
46
46
|
"args": r"",
|
|
47
47
|
"linker args": r"",
|
|
@@ -49,7 +49,7 @@ CONFIG = _cleanup(
|
|
|
49
49
|
"c++": {
|
|
50
50
|
"name": "msvc",
|
|
51
51
|
"linker": r"link",
|
|
52
|
-
"version": "19.44.
|
|
52
|
+
"version": "19.44.35217",
|
|
53
53
|
"commands": r"cl",
|
|
54
54
|
"args": r"",
|
|
55
55
|
"linker args": r"",
|
|
@@ -93,7 +93,7 @@ CONFIG = _cleanup(
|
|
|
93
93
|
},
|
|
94
94
|
},
|
|
95
95
|
"Python Information": {
|
|
96
|
-
"path": r"C:\Users\runneradmin\AppData\Local\Temp\build-env-
|
|
96
|
+
"path": r"C:\Users\runneradmin\AppData\Local\Temp\build-env-ckm_5_7l\Scripts\python.exe",
|
|
97
97
|
"version": "3.13",
|
|
98
98
|
},
|
|
99
99
|
"SIMD Extensions": {
|