Fix version #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build wheel on win64 | |
on: [push] | |
env: | |
CIBW_BUILD_VERBOSITY: 1 | |
CIBW_ARCHS: "auto64" | |
# Run the package tests using `pytest` | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: "pytest --pyargs scrypt" | |
jobs: | |
build_wheels_for_win: | |
name: Build wheels on Win64 | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python: [39, 310, 311, 312, 313] | |
include: | |
- os: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Used to host cibuildwheel | |
- uses: actions/setup-python@v5 | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel | |
- name: install openssl (64 bit) | |
shell: pwsh | |
run: choco install openssl --limitoutput | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
env: | |
# Disable building PyPy wheels | |
CIBW_SKIP: pp* | |
CIBW_PRERELEASE_PYTHONS: False | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifact-${{ matrix.python }} | |
path: wheelhouse/*.whl | |
upload_pypi: | |
name: Upload to PyPI (prod) | |
needs: [build_wheels_for_win] | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [39, 310, 311, 312, 313] | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: artifact-${{ matrix.python }} | |
path: dist | |
- uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |