numpy 2.3.2__cp314-cp314t-win_arm64.whl → 2.3.4__cp314-cp314t-win_arm64.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 +10 -10
- numpy/__init__.py +4 -4
- numpy/__init__.pyi +1101 -340
- numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_simd.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/_ufunc_config.py +2 -0
- numpy/_core/_ufunc_config.pyi +52 -6
- numpy/_core/_umath_tests.cp314t-win_arm64.pyd +0 -0
- numpy/_core/lib/{libnpymath.a → 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_datetime.py +24 -0
- numpy/_core/tests/test_numerictypes.py +29 -0
- numpy/_core/tests/test_stringdtype.py +23 -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.cp314t-win_arm64.pyd +0 -0
- numpy/lib/_arraysetops_impl.pyi +24 -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.py +1 -0
- numpy/linalg/_linalg.pyi +32 -39
- numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
- numpy/linalg/lapack_lite.cp314t-win_arm64.pyd +0 -0
- numpy/linalg/tests/test_linalg.py +14 -1
- numpy/ma/extras.pyi +4 -0
- numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
- numpy/random/_common.cp314t-win_arm64.pyd +0 -0
- numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
- numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
- numpy/random/_philox.cp314t-win_arm64.pyd +0 -0
- numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
- numpy/random/bit_generator.cp314t-win_arm64.pyd +0 -0
- numpy/random/lib/{libnpyrandom.a → npyrandom.lib} +0 -0
- numpy/random/mtrand.cp314t-win_arm64.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/tests/test_configtool.py +1 -1
- numpy/typing/tests/data/fail/arithmetic.pyi +1 -1
- numpy/typing/tests/data/fail/bitwise_ops.pyi +4 -4
- 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.4.dist-info/DELVEWHEEL +2 -0
- {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/LICENSE.txt +881 -881
- {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/METADATA +1 -1
- {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/RECORD +64 -65
- numpy/_typing/_callable.pyi +0 -366
- numpy-2.3.2.dist-info/DELVEWHEEL +0 -2
- {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/WHEEL +0 -0
- {numpy-2.3.2.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": "clang-cl",
|
|
35
35
|
"linker": r"lld-link",
|
|
36
|
-
"version": "
|
|
36
|
+
"version": "19.1.5",
|
|
37
37
|
"commands": r"clang-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": "clang-cl",
|
|
51
51
|
"linker": r"lld-link",
|
|
52
|
-
"version": "
|
|
52
|
+
"version": "19.1.5",
|
|
53
53
|
"commands": r"clang-cl",
|
|
54
54
|
"args": r"",
|
|
55
55
|
"linker args": r"",
|
|
@@ -76,24 +76,24 @@ CONFIG = _cleanup(
|
|
|
76
76
|
"found": bool("True".lower().replace("false", "")),
|
|
77
77
|
"version": "0.3.30",
|
|
78
78
|
"detection method": "pkgconfig",
|
|
79
|
-
"include directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-
|
|
80
|
-
"lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-
|
|
79
|
+
"include directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-s_0drd3j/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/include",
|
|
80
|
+
"lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-s_0drd3j/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/lib",
|
|
81
81
|
"openblas configuration": r"OpenBLAS 0.3.30 NO_AFFINITY ARMV8 MAX_THREADS=4",
|
|
82
|
-
"pc file directory": r"C:/a/numpy/numpy/.openblas",
|
|
82
|
+
"pc file directory": r"C:/a/numpy-release/numpy-release/.openblas",
|
|
83
83
|
},
|
|
84
84
|
"lapack": {
|
|
85
85
|
"name": "scipy-openblas",
|
|
86
86
|
"found": bool("True".lower().replace("false", "")),
|
|
87
87
|
"version": "0.3.30",
|
|
88
88
|
"detection method": "pkgconfig",
|
|
89
|
-
"include directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-
|
|
90
|
-
"lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-
|
|
89
|
+
"include directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-s_0drd3j/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/include",
|
|
90
|
+
"lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-s_0drd3j/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/lib",
|
|
91
91
|
"openblas configuration": r"OpenBLAS 0.3.30 NO_AFFINITY ARMV8 MAX_THREADS=4",
|
|
92
|
-
"pc file directory": r"C:/a/numpy/numpy/.openblas",
|
|
92
|
+
"pc file directory": r"C:/a/numpy-release/numpy-release/.openblas",
|
|
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-2h96vqbg\Scripts\python.exe",
|
|
97
97
|
"version": "3.14",
|
|
98
98
|
},
|
|
99
99
|
"SIMD Extensions": {
|
numpy/__init__.py
CHANGED
|
@@ -88,14 +88,14 @@ Exceptions to this rule are documented.
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
# start delvewheel patch
|
|
91
|
-
def
|
|
91
|
+
def _delvewheel_patch_1_11_1():
|
|
92
92
|
import os
|
|
93
93
|
if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'numpy.libs'))):
|
|
94
94
|
os.add_dll_directory(libs_dir)
|
|
95
95
|
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
del
|
|
97
|
+
_delvewheel_patch_1_11_1()
|
|
98
|
+
del _delvewheel_patch_1_11_1
|
|
99
99
|
# end delvewheel patch
|
|
100
100
|
|
|
101
101
|
import os
|
|
@@ -938,4 +938,4 @@ else:
|
|
|
938
938
|
|
|
939
939
|
|
|
940
940
|
# Remove symbols imported for internal use
|
|
941
|
-
del os, sys, warnings
|
|
941
|
+
del os, sys, warnings
|