-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pyproject.toml and unify PyPI CI builds #1407
Merged
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
6964e11
Add pyproject.toml and simplify Cython build
rockstorm101 cd89233
Move static metadata to pyproject.toml
rockstorm101 36e011a
setup: Use functions for dynamic configuration
rockstorm101 9e87df7
README: Update install from source guide for unix
rockstorm101 837d34e
Stop ignoring gcoder_line cruft
rockstorm101 0fd23d3
ci: Unify all PyPI build actions
rockstorm101 fc4db01
Revert "Stop ignoring gcoder_line cruft"
rockstorm101 b88db4b
ci: Remove macos-11 runner on wheel build
rockstorm101 cfcbad5
ci: Produce macOS app with capital P
rockstorm101 436778e
ci: Bump pypa/cibuildwheel from 2.16.2 to 2.16.5
rockstorm101 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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-11, 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/cibuildwheel@v2.16.2 | ||
env: | ||
# we only support what's supported by wxPython, therefore we skip: | ||
# * PyPy Python implementation | ||
# * Python 3.6 nor 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 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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not delete as these files will be generated when compiling. This will prevent to upload those files to our repository
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair enough, I'll revert this change.