Skip to content

Commit debc7bc

Browse files
committed
Add news
1 parent 675ee69 commit debc7bc

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

news/cvxpy.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
**Added:**
2+
3+
* L-BFGS-B method in scipy for weight optimization in def get_weights
4+
* Support for Python 3.13
5+
6+
**Changed:**
7+
8+
* <news item>
9+
10+
**Deprecated:**
11+
12+
* <news item>
13+
14+
**Removed:**
15+
16+
* cvxpy depenedency for linear weight optmization in def get_weights
17+
* Support for Python 3.10
18+
19+
**Fixed:**
20+
21+
* Absolute tolerance for updated weighted matrix from 0.5 to 1e-05 in test_subroutines.py
22+
23+
**Security:**
24+
25+
* <news item>

tests/test_subroutines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def test_update_weights_matrix(tuwm):
212212
print("Actual test get stretched component", actual)
213213
print("Expected test get stretched component", tuwm[1])
214214
expected = tuwm[1]
215-
np.testing.assert_allclose(actual, expected, rtol=1e-03)
215+
np.testing.assert_allclose(actual, expected, rtol=1e-03, atol=1e-05)
216216

217217

218218
tgrm = [

0 commit comments

Comments
 (0)