Skip to content

Bump filelock from 3.16.1 to 3.20.1 #509

Bump filelock from 3.16.1 to 3.20.1

Bump filelock from 3.16.1 to 3.20.1 #509

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pyXCP
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
continue-on-error: true
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
- os: ubuntu-24.04-arm
- os: ubuntu-latest
- os: ubuntu-latest
cibw_archs_linux: armv7l
- os: windows-11-arm
cibw_archs_windows: ARM64
- os: windows-latest
cibw_archs_windows: AMD64
steps:
- uses: actions/checkout@v5
- name: Set up QEMU (for ARM emulation)
if: ${{ matrix.cibw_archs_linux == 'armv7l' }}
uses: docker/setup-qemu-action@v3
with:
platforms: arm
- uses: pypa/[email protected]
env:
CIBW_ARCHS_WINDOWS: ${{ matrix.cibw_archs_windows || '' }}
CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux || '' }}
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Build sdist
run: |
pip install -U build
python -m build --sdist
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
include-hidden-files: true
retention-days: 1
upload_pypi:
needs: [build_wheels, build_sdist] # , build_sdist
runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v5
with:
path: dist
merge-multiple: true
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}