Skip to content

Commit

Permalink
Merge pull request #171 from labgem/updateCheckRecipe
Browse files Browse the repository at this point in the history
Fix workflow checking the bioconda recipe
  • Loading branch information
axbazin authored Jan 24, 2024
2 parents e9794fb + 6da4c3c commit da4a7e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/check_recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ jobs:
# Setting up miniconda
- uses: conda-incubator/setup-miniconda@v2
with:
condarc-file: .condarc.yml
activate-environment: test
python-version: ${{ matrix.python-version }}
channels: conda-forge,bioconda,defaults
- name: Set up test environment
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To ensure a smoother installation and avoid conflicting dependencies, it's highl

```bash
# Install PPanGGOLiN into a new conda environment
conda create -n ppanggolin -c conda-forge -c bioconda ppanggolin
conda create -n ppanggolin -c defaults -c conda-forge -c bioconda ppanggolin

# Check PPanGGOLiN install
conda activate ppanggolin
Expand Down
2 changes: 1 addition & 1 deletion docs/user/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To ensure a smoother installation and avoid conflicting dependencies, it's highl

```bash
# Install into a new conda environment
conda create -n ppanggo -c conda-forge -c bioconda ppanggolin
conda create -n ppanggo -c defaults -c conda-forge -c bioconda ppanggolin

# Check PPanGGOLiN install
conda activate ppanggo
Expand Down

0 comments on commit da4a7e7

Please sign in to comment.