Skip to content

Commit

Permalink
Fix: Replace conda with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
NiallOswald authored Feb 18, 2025
1 parent b4df10e commit 9c715d2
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,9 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: |
conda install conda-build
- name: Build and install package
run: |
conda develop . --name base
python -m pip install .
- name: Lint with flake8
run: |
conda install flake8
Expand All @@ -33,5 +26,5 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --statistics
- name: Test with pytest
run: |
conda install pytest
python -m pip install pytest
pytest test

0 comments on commit 9c715d2

Please sign in to comment.