-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deprecated argument in 'scipy.sparse.linalg.cg' #7897
Conversation
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
/build |
Signed-off-by: YunLiu <[email protected]>
/build |
1 similar comment
/build |
Hi @ericspod and @Nic-Ma, I dropped Python3.8 test in ".github/workflows/pythonapp.yml" since scipy requires Python>=3.9. Since 3.8 has come to an end, do you have any concern on this change? |
/build |
1 similar comment
/build |
/build |
Signed-off-by: YunLiu <[email protected]>
/build |
Signed-off-by: YunLiu <[email protected]>
/build |
1 similar comment
/build |
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
Signed-off-by: YunLiu <[email protected]>
for more information, see https://pre-commit.ci
/build |
Add a numpy version requirement as a workaround in this commit: 5ce2be9 |
Fixes #7896
Description
'scipy.sparse.linalg.cg' keyword argument
tol
is deprecated in favor ofrtol
and will be removed in SciPy v1.14.0. Until then, if set, it will overridertol
. So update to usertol
incg
.Drop python 3.8 test in packaging and premerge-gpu-test.
Types of changes
./runtests.sh -f -u --net --coverage
../runtests.sh --quick --unittests --disttests
.make html
command in thedocs/
folder.