Skip to content

Commit

Permalink
Update to IMP 2.22.0, drop Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Dec 12, 2024
1 parent 1f2d738 commit e8ca9bb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
os: [ubuntu-latest]
python-version: ["3.12"]
imp-branch: [main, develop]
include:
- os: [ubuntu-latest]
python-version: "2.7"
imp-branch: main
runs-on: ${{ matrix.os }}

steps:
Expand Down
8 changes: 1 addition & 7 deletions support/setup_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,13 @@ python_version=$2
conda config --remove channels defaults || :
conda config --add channels conda-forge

if [ ${python_version} = "2.7" ]; then
pip="pip<=19.3.1"
else
pip="pip"
fi

if [ ${imp_branch} = "develop" ]; then
IMP_CONDA="imp-nightly"
else
IMP_CONDA="imp"
fi

conda create --yes -q -n python${python_version} -c salilab python=${python_version} modeller ${pip} ${IMP_CONDA}
conda create --yes -q -n python${python_version} -c salilab python=${python_version} modeller pip ${IMP_CONDA}
eval "$(conda shell.bash hook)"
conda activate python${python_version}

Expand Down

0 comments on commit e8ca9bb

Please sign in to comment.