Skip to content

Commit

Permalink
revert to python 3.10 because of deeptime
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvoegele committed Jan 26, 2025
1 parent bef092e commit 0e8d017
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.12
python-version: 3.10
- name: Lint with flake8
run: |
pip install flake8
Expand Down
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.12 scipy numpy pandas matplotlib MDAnalysis==2.8 deeptime biotite pip==24 -c conda-forge
conda create --name pensa python==3.10 scipy numpy pandas matplotlib MDAnalysis==2.8 deeptime biotite pip -c conda-forge
conda activate pensa
If you want to use PENSA with Jupyter notebooks:
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python==3.12
- python==3.10
- scipy
- numpy
- pandas
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
"biotite",
"gpcrmining",
]
requires-python = "==3.12"
requires-python = "==3.10"

[project.urls]
Documentation = "https://pensa.readthedocs.io/en/latest/"
Expand Down

0 comments on commit 0e8d017

Please sign in to comment.