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.

Files changed (66) hide show
  1. numpy/__config__.py +10 -10
  2. numpy/__init__.py +4 -4
  3. numpy/__init__.pyi +1101 -340
  4. numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
  5. numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
  6. numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
  7. numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
  8. numpy/_core/_simd.cp314t-win_arm64.pyd +0 -0
  9. numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.pyd +0 -0
  10. numpy/_core/_ufunc_config.py +2 -0
  11. numpy/_core/_ufunc_config.pyi +52 -6
  12. numpy/_core/_umath_tests.cp314t-win_arm64.pyd +0 -0
  13. numpy/_core/lib/{libnpymath.a → npymath.lib} +0 -0
  14. numpy/_core/lib/pkgconfig/numpy.pc +1 -1
  15. numpy/_core/numerictypes.py +1 -1
  16. numpy/_core/tests/test_api.py +34 -1
  17. numpy/_core/tests/test_datetime.py +24 -0
  18. numpy/_core/tests/test_numerictypes.py +29 -0
  19. numpy/_core/tests/test_stringdtype.py +23 -16
  20. numpy/_core/tests/test_strings.py +15 -0
  21. numpy/_core/tests/test_umath.py +12 -0
  22. numpy/exceptions.pyi +2 -0
  23. numpy/fft/_pocketfft_umath.cp314t-win_arm64.pyd +0 -0
  24. numpy/lib/_arraysetops_impl.pyi +24 -0
  25. numpy/lib/_histograms_impl.pyi +8 -8
  26. numpy/lib/_index_tricks_impl.pyi +12 -0
  27. numpy/lib/_polynomial_impl.pyi +10 -8
  28. numpy/lib/mixins.pyi +2 -0
  29. numpy/lib/tests/test_index_tricks.py +5 -0
  30. numpy/linalg/_linalg.py +1 -0
  31. numpy/linalg/_linalg.pyi +32 -39
  32. numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
  33. numpy/linalg/lapack_lite.cp314t-win_arm64.pyd +0 -0
  34. numpy/linalg/tests/test_linalg.py +14 -1
  35. numpy/ma/extras.pyi +4 -0
  36. numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
  37. numpy/random/_common.cp314t-win_arm64.pyd +0 -0
  38. numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
  39. numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
  40. numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
  41. numpy/random/_philox.cp314t-win_arm64.pyd +0 -0
  42. numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
  43. numpy/random/bit_generator.cp314t-win_arm64.pyd +0 -0
  44. numpy/random/lib/{libnpyrandom.a → npyrandom.lib} +0 -0
  45. numpy/random/mtrand.cp314t-win_arm64.pyd +0 -0
  46. numpy/random/tests/test_generator_mt19937.py +5 -0
  47. numpy/testing/_private/extbuild.pyi +3 -3
  48. numpy/testing/_private/utils.pyi +1 -1
  49. numpy/tests/test_configtool.py +1 -1
  50. numpy/typing/tests/data/fail/arithmetic.pyi +1 -1
  51. numpy/typing/tests/data/fail/bitwise_ops.pyi +4 -4
  52. numpy/typing/tests/data/fail/scalars.pyi +6 -6
  53. numpy/typing/tests/data/reveal/arithmetic.pyi +29 -29
  54. numpy/typing/tests/data/reveal/array_constructors.pyi +5 -5
  55. numpy/typing/tests/data/reveal/bitwise_ops.pyi +10 -11
  56. numpy/typing/tests/data/reveal/linalg.pyi +6 -6
  57. numpy/typing/tests/data/reveal/mod.pyi +18 -19
  58. numpy/version.py +2 -2
  59. numpy-2.3.4.dist-info/DELVEWHEEL +2 -0
  60. {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/LICENSE.txt +881 -881
  61. {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/METADATA +1 -1
  62. {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/RECORD +64 -65
  63. numpy/_typing/_callable.pyi +0 -366
  64. numpy-2.3.2.dist-info/DELVEWHEEL +0 -2
  65. {numpy-2.3.2.dist-info → numpy-2.3.4.dist-info}/WHEEL +0 -0
  66. {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": "20.1.6",
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.2",
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": "20.1.6",
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-wwtchjfm/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/include",
80
- "lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-wwtchjfm/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/lib",
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-wwtchjfm/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/include",
90
- "lib directory": r"C:/Users/runneradmin/AppData/Local/Temp/cibw-run-wwtchjfm/cp314t-win_arm64/build/venv/Lib/site-packages/scipy_openblas32/lib",
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-r1rf1o_g\Scripts\python.exe",
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 _delvewheel_patch_1_11_0():
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
- _delvewheel_patch_1_11_0()
98
- del _delvewheel_patch_1_11_0
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