Skip to content

Commit

Permalink
PyPI Workflows
Browse files Browse the repository at this point in the history
- attempt to fix the pypi workflow.
  • Loading branch information
carlkidcrypto committed Jan 30, 2024
1 parent bce1fcb commit 1f90dd1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_and_publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
run: |
python -m pip install --upgrade pip
pip install cibuildwheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build_and_publish_to_test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
run: |
python -m pip install --upgrade pip
pip install cibuildwheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down

0 comments on commit 1f90dd1

Please sign in to comment.