numpy 2.3.3__cp312-cp312-win32.whl → 2.3.4__cp312-cp312-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.

Files changed (76) hide show
  1. numpy/__config__.py +4 -4
  2. numpy/__init__.pyi +819 -218
  3. numpy/_core/_multiarray_tests.cp312-win32.lib +0 -0
  4. numpy/_core/_multiarray_tests.cp312-win32.pyd +0 -0
  5. numpy/_core/_multiarray_umath.cp312-win32.lib +0 -0
  6. numpy/_core/_multiarray_umath.cp312-win32.pyd +0 -0
  7. numpy/_core/_operand_flag_tests.cp312-win32.lib +0 -0
  8. numpy/_core/_operand_flag_tests.cp312-win32.pyd +0 -0
  9. numpy/_core/_rational_tests.cp312-win32.lib +0 -0
  10. numpy/_core/_rational_tests.cp312-win32.pyd +0 -0
  11. numpy/_core/_simd.cp312-win32.lib +0 -0
  12. numpy/_core/_simd.cp312-win32.pyd +0 -0
  13. numpy/_core/_struct_ufunc_tests.cp312-win32.lib +0 -0
  14. numpy/_core/_struct_ufunc_tests.cp312-win32.pyd +0 -0
  15. numpy/_core/_ufunc_config.py +2 -0
  16. numpy/_core/_ufunc_config.pyi +52 -6
  17. numpy/_core/_umath_tests.cp312-win32.lib +0 -0
  18. numpy/_core/_umath_tests.cp312-win32.pyd +0 -0
  19. numpy/_core/lib/npymath.lib +0 -0
  20. numpy/_core/lib/pkgconfig/numpy.pc +1 -1
  21. numpy/_core/numerictypes.py +1 -1
  22. numpy/_core/tests/test_api.py +34 -1
  23. numpy/_core/tests/test_numerictypes.py +29 -0
  24. numpy/_core/tests/test_stringdtype.py +16 -16
  25. numpy/_core/tests/test_strings.py +15 -0
  26. numpy/_core/tests/test_umath.py +12 -0
  27. numpy/exceptions.pyi +2 -0
  28. numpy/fft/_pocketfft_umath.cp312-win32.lib +0 -0
  29. numpy/fft/_pocketfft_umath.cp312-win32.pyd +0 -0
  30. numpy/lib/_histograms_impl.pyi +8 -8
  31. numpy/lib/_index_tricks_impl.pyi +12 -0
  32. numpy/lib/_polynomial_impl.pyi +10 -8
  33. numpy/lib/mixins.pyi +2 -0
  34. numpy/lib/tests/test_index_tricks.py +5 -0
  35. numpy/linalg/_linalg.pyi +32 -39
  36. numpy/linalg/_umath_linalg.cp312-win32.lib +0 -0
  37. numpy/linalg/_umath_linalg.cp312-win32.pyd +0 -0
  38. numpy/linalg/lapack_lite.cp312-win32.lib +0 -0
  39. numpy/linalg/lapack_lite.cp312-win32.pyd +0 -0
  40. numpy/ma/extras.pyi +4 -0
  41. numpy/random/_bounded_integers.cp312-win32.lib +0 -0
  42. numpy/random/_bounded_integers.cp312-win32.pyd +0 -0
  43. numpy/random/_common.cp312-win32.lib +0 -0
  44. numpy/random/_common.cp312-win32.pyd +0 -0
  45. numpy/random/_generator.cp312-win32.lib +0 -0
  46. numpy/random/_generator.cp312-win32.pyd +0 -0
  47. numpy/random/_mt19937.cp312-win32.lib +0 -0
  48. numpy/random/_mt19937.cp312-win32.pyd +0 -0
  49. numpy/random/_pcg64.cp312-win32.lib +0 -0
  50. numpy/random/_pcg64.cp312-win32.pyd +0 -0
  51. numpy/random/_philox.cp312-win32.lib +0 -0
  52. numpy/random/_philox.cp312-win32.pyd +0 -0
  53. numpy/random/_sfc64.cp312-win32.lib +0 -0
  54. numpy/random/_sfc64.cp312-win32.pyd +0 -0
  55. numpy/random/bit_generator.cp312-win32.lib +0 -0
  56. numpy/random/bit_generator.cp312-win32.pyd +0 -0
  57. numpy/random/lib/npyrandom.lib +0 -0
  58. numpy/random/mtrand.cp312-win32.lib +0 -0
  59. numpy/random/mtrand.cp312-win32.pyd +0 -0
  60. numpy/random/tests/test_generator_mt19937.py +5 -0
  61. numpy/testing/_private/extbuild.pyi +3 -3
  62. numpy/testing/_private/utils.pyi +1 -1
  63. numpy/typing/tests/data/fail/bitwise_ops.pyi +3 -3
  64. numpy/typing/tests/data/fail/scalars.pyi +6 -6
  65. numpy/typing/tests/data/reveal/arithmetic.pyi +29 -29
  66. numpy/typing/tests/data/reveal/array_constructors.pyi +5 -5
  67. numpy/typing/tests/data/reveal/bitwise_ops.pyi +10 -11
  68. numpy/typing/tests/data/reveal/linalg.pyi +6 -6
  69. numpy/typing/tests/data/reveal/mod.pyi +18 -19
  70. numpy/version.py +2 -2
  71. {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/METADATA +1 -1
  72. {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/RECORD +75 -76
  73. numpy/_typing/_callable.pyi +0 -279
  74. {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/LICENSE.txt +0 -0
  75. {numpy-2.3.3.dist-info → numpy-2.3.4.dist-info}/WHEEL +0 -0
  76. {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.35215",
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.3",
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.35215",
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-6s2u_c_2\Scripts\python.exe",
96
+ "path": r"C:\Users\runneradmin\AppData\Local\Temp\build-env-rkyxu8qs\Scripts\python.exe",
97
97
  "version": "3.12",
98
98
  },
99
99
  "SIMD Extensions": {