File tree Expand file tree Collapse file tree 5 files changed +27
-3
lines changed Expand file tree Collapse file tree 5 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,14 @@ jobs:
4141
4242 - name : Install python-build and twine
4343 run : |
44- python -m pip install --upgrade pip setuptools
44+ python -m pip install --upgrade pip " setuptools<=67"
4545 python -m pip install build twine
4646 python -m pip list
4747
4848 - name : Build a wheel and a sdist
4949 run : |
50- PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
50+ #PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
51+ python -m build .
5152
5253 - name : Verify the distribution
5354 run : twine check --strict dist/*
Original file line number Diff line number Diff line change 1717this implementation for the default when working with NumPy arrays.
1818
1919"""
20- __version__ = '1.12.dev0 '
20+ __version__ = '1.11.2 '
2121
2222from .common import * # noqa: F401, F403
Original file line number Diff line number Diff line change 11# Changelog
22
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+
320## 1.11.1 (2025-03-04)
421
522This 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
212212array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity]
213213array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0]
214214array_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
6666array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity]
6767array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0]
6868array_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