Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvoegele committed Aug 5, 2024
1 parent 815d860 commit 8a30b15
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Create and activate a conda environment:

.. code:: bash
conda create --name pensa python=3.9 numpy==1.22 scipy>=1.2 pandas==1.4 matplotlib MDAnalysis==2.2 cython biotite -c conda-forge
conda create --name pensa python=3.9 numpy==1.22 scipy==1.9 pandas==1.4 matplotlib==3.5 MDAnalysis==2.2 cython biotite -c conda-forge -c conda-forge
conda activate pensa
If you want to use PENSA with Jupyter notebooks:
Expand Down
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ channels:
- defaults
dependencies:
- python==3.9
- scipy>=1.2
- scipy==1.9
- numpy==1.22
- pandas
- matplotlib
- pandas==1.4
- matplotlib==3.5
- MDAnalysis==2.2
- deeptime
- biotite
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
zip_safe=False,
install_requires=[
'numpy==1.22', # density functions in MDAnalysis 2 use np.histogramdd() with keyword normed which is deprecated in numpy 1.21 and removed in numpy 1.24
'scipy>=1.2',
'scipy==1.9',
'pandas==1.4',
'matplotlib',
'matplotlib==3.5',
'deeptime',
'MDAnalysis==2.2', # some features we use will likely be removed in MDA 3
'biotite',
Expand Down

0 comments on commit 8a30b15

Please sign in to comment.