Skip to content

Replace SingletonConfigurable classes with Configurable #429

Replace SingletonConfigurable classes with Configurable

Replace SingletonConfigurable classes with Configurable #429

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:
os: [windows-latest, ubuntu-latest] # , ubuntu-latest, macos-13, macos-14
# cibw_archs: ["x86_64", ""]
#include:
# - os: ubuntu-latest
# cibw_archs: "aarch64"
steps:
- uses: actions/checkout@v3
- name: Build wheel
uses: pypa/cibuildwheel@v2.20
env:
CIBW_ARCHS_LINUX: x86_64
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
<<<<<<< Updated upstream

Check failure on line 35 in .github/workflows/pythonapp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pythonapp.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
path: ./wheelhouse/*.whl
||||||| Stash base
path: ./dist/*.whl
=======
path: ./wheelhouse/*.whl
if-no-files-found: warn
>>>>>>> Stashed changes
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
run: |
pip install -U build
python -m build --sdist
- name: Upload sdist result
uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
if-no-files-found: warn
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@v4.1.7
with:
# name: artifact
path: dist
merge-multiple: true
# pattern: dist/*
- uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}