Skip to content

Commit

Permalink
Attempt to fix broken action
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Feb 18, 2022
1 parent e5d4bb0 commit 7748e52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get install -y libfftw3-dev libatlas-dev libatlas-base-dev liblapack-dev libblas-dev gfortran
pip install -r requirements.txt
pip install wheel
python setup.py sdist bdist_wheel
$CONDA/bin/conda config --env --append channels conda-forge
$CONDA/bin/conda env update --file requirements.txt --name base
$CONDA/bin/python -m pip install --upgrade pip
$CONDA/bin/pip install wheel
$CONDA/bin/python setup.py sdist bdist_wheel
- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 7748e52

Please sign in to comment.