File tree 5 files changed +27
-3
lines changed
5 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,14 @@ jobs:
41
41
42
42
- name : Install python-build and twine
43
43
run : |
44
- python -m pip install --upgrade pip setuptools
44
+ python -m pip install --upgrade pip " setuptools<=67"
45
45
python -m pip install build twine
46
46
python -m pip list
47
47
48
48
- name : Build a wheel and a sdist
49
49
run : |
50
- PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
50
+ #PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
51
+ python -m build .
51
52
52
53
- name : Verify the distribution
53
54
run : twine check --strict dist/*
Original file line number Diff line number Diff line change 17
17
this implementation for the default when working with NumPy arrays.
18
18
19
19
"""
20
- __version__ = '1.12.dev0 '
20
+ __version__ = '1.11.2 '
21
21
22
22
from .common import * # noqa: F401, F403
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.11.2 (2025-03-20)
4
+
5
+ This is a bugfix release with no new features compared to version 1.11.
6
+
7
+ - fix the ` result_type ` wrapper for pytorch. Previously, ` result_type ` had multiple
8
+ issues with scalar arguments.
9
+ - fix several issues with ` clip ` wrappers. Previously, ` clip ` was failing to allow
10
+ behaviors which are unspecified by the 2024.12 standard but allowed by the array
11
+ libraries.
12
+
13
+ The following users contributed to this release:
14
+
15
+ Evgeni Burovski
16
+ Guido Imperiale
17
+ Magnus Dalen Kvalevåg
18
+
19
+
3
20
## 1.11.1 (2025-03-04)
4
21
5
22
This is a bugfix release with no new features compared to version 1.11.
Original file line number Diff line number Diff line change @@ -212,3 +212,6 @@ array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity
212
212
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity]
213
213
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0]
214
214
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> -0]
215
+
216
+ # numpy < 2 bug: type promotion of asarray([], 'float32') and (np.finfo(float32).max + 1) -> float64
217
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real
Original file line number Diff line number Diff line change @@ -66,3 +66,6 @@ array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity
66
66
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity]
67
67
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0]
68
68
array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> -0]
69
+
70
+ # numpy < 2 bug: type promotion of asarray([], 'float32') and (finfo(float32).max + 1) gives float64 not float32
71
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real
You can’t perform that action at this time.
0 commit comments