File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 22
22
- Fix (F)GW barycenter functions to support computing barycenter on 1 input + deprecate structures as lists (PR #628 )
23
23
- Fix line-search in partial GW and change default init to the interior of partial transport plans (PR #602 )
24
24
- Fix ` ot.da.sinkhorn_lpl1_mm ` compatibility with JAX (PR #592 )
25
+ - Fiw linesearch import error on Scipy 1.14 (PR #642 , Issue #641 )
25
26
26
27
## 0.9.3
27
28
* January 2024*
Original file line number Diff line number Diff line change 19
19
try :
20
20
from scipy .optimize import scalar_search_armijo
21
21
except ImportError :
22
- from scipy .optimize .linesearch import scalar_search_armijo
22
+ from scipy .optimize ._linesearch import scalar_search_armijo
23
23
24
24
# The corresponding scipy function does not work for matrices
25
25
You can’t perform that action at this time.
0 commit comments