Skip to content

Commit fd37875

Browse files
Merge pull request #107 from hmacdope/try_unpin_scipy
Try unpin scipy
2 parents c9957d6 + 009542e commit fd37875

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies = [
3434
'pytest',
3535
'matplotlib',
3636
'setuptools',
37-
'scipy==1.12.0',
37+
'scipy',
3838
'statsmodels',
3939
'plotly',
4040
'rdkit'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mdanalysis>=2.7.0
55
pytest
66
pathlib
77
matplotlib
8-
scipy==1.12.0
8+
scipy
99
statsmodels
1010
plotly
1111
rdkit

solvation_analysis/rdf_parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
import scipy
1818
import matplotlib.pyplot as plt
1919
import warnings
20-
from scipy.signal import find_peaks, gaussian
20+
from scipy.signal import find_peaks
21+
from scipy.signal.windows import gaussian
2122

2223

2324
def interpolate_rdf(

0 commit comments

Comments
 (0)