Skip to content

Commit

Permalink
pin pandas<2
Browse files Browse the repository at this point in the history
- temporary fix for #93
- pin in setup.py, pyproject.yaml, test_env.yaml and requirements.txt
  • Loading branch information
orbeckst committed Sep 18, 2023
1 parent 055cbd9 commit eda16a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- MDAnalysis>=2.0.0
- scipy
- numpy
- pandas
- pandas<2
- matplotlib
- statsmodels
- pytest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ keywords = [

dependencies = [
'numpy>=1.20.0',
'pandas',
'pandas<2', # temporary fix for #93
'mdanalysis>=2.0.0',
'pytest',
'matplotlib',
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
setuptools
numpy>=1.20.0
pandas
pandas<2
mdanalysis>=2.0.0
pytest
pathlib
matplotlib
scipy
statsmodels
plotly
rdkit
rdkit
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
install_requires=[
'numpy>=1.20.0',
'mdanalysis>=2.0.0',
'pandas',
'pandas<2', # temporary fix for #93
'matplotlib',
'scipy',
'statsmodels',
Expand Down

0 comments on commit eda16a5

Please sign in to comment.