Skip to content

Commit

Permalink
add pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt authored Sep 22, 2023
1 parent 18bcd1a commit 6852ee5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
max-parallel: 5

Expand All @@ -22,15 +22,13 @@ jobs:
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
- name: Install packages and test with pytest
run: |
conda env update --file environment.yml --name base
- name: Test with pytest
run: |
conda update conda -y -q
conda config --add channels conda-forge
conda update conda -y -q
conda install scikit-learn=1.0.2 pandas=1.3.5 -y -q
conda env update --file environment.yml --name base
pip install scikit-learn==1.0.2
pip install pandas==1.3.5
conda install tensorflow joblib pytest -y -q
conda install imageio scikit-image -y -q
conda install dlib -y -q
Expand Down

0 comments on commit 6852ee5

Please sign in to comment.