forked from kliment/Printrun
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kliment#1407 from rockstorm101/pyproject-cibuild
Add pyproject.toml and unify PyPI CI builds
- Loading branch information
Showing
9 changed files
with
164 additions
and
258 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Build Python sdist and wheels | ||
|
||
on: | ||
pull_request: | ||
push: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-22.04, windows-2022, macos-12] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
if: runner.os == 'Linux' | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
|
||
- name: Build ${{ matrix.os }} wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# we only support what's supported by wxPython, therefore we skip: | ||
# * PyPy Python implementation | ||
# * Python 3.6 and 3.7 versions | ||
# * musl C implementation | ||
CIBW_SKIP: "pp* cp36* cp37* *-musllinux*" | ||
# produce ARM wheels on Linux in addition to 32 and 64 bit | ||
CIBW_ARCHS_LINUX: auto aarch64 | ||
# produce wheels for macOS to support both Intel and Apple silicon | ||
CIBW_ARCHS_MACOS: x86_64 universal2 arm64 | ||
|
||
- name: Upload ${{ matrix.os }} wheels | ||
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@v4 | ||
|
||
- name: Build sdist | ||
run: pipx run build --sdist | ||
|
||
- name: Upload sdist | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-sdist | ||
path: dist/*.tar.gz | ||
|
||
upload_pypi: | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
environment: pypi | ||
permissions: | ||
id-token: write | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
# unpack all CIBW artifacts into dist/ | ||
pattern: cibw-* | ||
path: dist | ||
merge-multiple: true | ||
|
||
- uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
# by default, the contents of the `dist/` directory are uploaded | ||
password: ${{ secrets.PYPI_API_KEY }} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build-system] | ||
requires = ["setuptools", "cython"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "Printrun" | ||
description = "Host software for 3D printers" | ||
authors = [ | ||
{name = "Kliment Yanev"}, | ||
{name = "Guillaume Seguin"}, | ||
] | ||
readme = "README.md" | ||
requires-python=">=3.8" | ||
classifiers=[ | ||
"Environment :: X11 Applications :: GTK", | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Manufacturing", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Printing", | ||
] | ||
dynamic = [ # these variables are dynamically set at `setup.py` | ||
"version", | ||
"scripts", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/kliment/Printrun/" | ||
Issues = "https://github.com/kliment/Printrun/issues" | ||
Changelog = "https://github.com/kliment/Printrun/blob/master/NEWS.md" |
Oops, something went wrong.