-
Notifications
You must be signed in to change notification settings - Fork 125
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
ci: Add python wheel workflow #436
Closed
lekaf974
wants to merge
13
commits into
AcademySoftwareFoundation:main
from
lekaf974:ci/add-python-wheels-workflow
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
91e5221
ci: Add python wheel workflow
lekaf974 416fe1f
ci: commenting failing part
lekaf974 10b89b0
ci: update paths triggering python wheel workflow
lekaf974 ace3fdd
ci: uncomment
lekaf974 cf6ad48
ci: update provider
lekaf974 9af7af5
ci: update provider
lekaf974 ac853a7
ci: update provider
lekaf974 7cb3e0d
ci: set experimental to true
lekaf974 b471899
feat: remove non existing variables
lekaf974 cc98473
feat: remove unneeded metadata
lekaf974 cedd760
Revert "feat: remove unneeded metadata"
lekaf974 28b3510
test
lekaf974 8532847
test
lekaf974 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,75 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright (c) Contributors to the OpenEXR Project. | ||
|
||
name: Python Wheels | ||
|
||
on: | ||
|
||
# Run on all changes (PR and push) to the python binding | ||
# source/configuration files, except on the release branches, which | ||
# have their own workflow, which also publish to pypi/test.pypi. | ||
# Note that changes to the core libraries will *not* | ||
# trigger building the wheels. However, the main ci workflow does | ||
# build and test the bindings (for a single python version on a | ||
# single arch) | ||
|
||
push: | ||
branches-ignore: | ||
- RB-* | ||
paths: | ||
- 'src/**' | ||
- 'pyproject.toml' | ||
- '.github/workflows/python-wheels.yml' | ||
pull_request: | ||
branches-ignore: | ||
- RB-* | ||
paths: | ||
- 'src/**' | ||
- 'pyproject.toml' | ||
- '.github/workflows/python-wheels.yml' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build_wheels: | ||
name: Python Wheels - ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
|
||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Create sdist | ||
# Only create it once. | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: pipx run build --sdist . --outdir wheelhouse | ||
|
||
- name: Build wheel | ||
uses: pypa/cibuildwheel@79b0dd328794e1180a7268444d46cdf12e1abd01 # v2.21.0 | ||
env: | ||
CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | ||
# Build Python 3.7 through 3.11. | ||
# Skip python 3.6 since scikit-build-core requires 3.7+ | ||
# Skip 32-bit wheels builds on Windows | ||
# Also skip the PyPy builds, since they fail the unit tests | ||
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-*" | ||
CIBW_SKIP: "*-win32 *_i686" | ||
CIBW_TEST_SKIP: "*-macosx*arm64" | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | ||
with: | ||
name: wheels-${{ matrix.os }} | ||
path: | | ||
./wheelhouse/*.whl | ||
./wheelhouse/*.tar.gz |
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,77 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright (c) Contributors to the OpenEXR Project. | ||
|
||
[build-system] | ||
requires = ["scikit-build-core==0.8.1", "pybind11"] | ||
build-backend = "scikit_build_core.build" | ||
|
||
[project] | ||
name = "Imath" | ||
dynamic = [] | ||
|
||
description="Python bindings for the Imath a basic, light-weight, and efficient C++ representation of 2D and 3D vectors and matrices and other simple but useful mathematical objects, functions, and data types common in computer graphics applications, including the “half” 16-bit floating-point type." | ||
readme = "README.md" | ||
authors = [ | ||
{ name="Contributors to the OpenEXR project", email="[email protected]" }, | ||
] | ||
requires-python = ">=3.7" | ||
|
||
[project.urls] | ||
"Homepage" = "https://imath.readthedocs.io/" | ||
"Source" = "https://github.com/AcademySoftwareFoundation/Imath" | ||
"Bug Tracker" = "https://github.com/AcademySoftwareFoundation/Imath/issues" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest"] | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"] | ||
xfail_strict = true | ||
log_cli_level = "INFO" | ||
filterwarnings = [ | ||
"error", | ||
] | ||
testpaths = ["tests"] | ||
|
||
[tool.scikit-build] | ||
wheel.expand-macos-universal-tags = true | ||
sdist.exclude = [".github", "src/**Test", "website", "share"] | ||
|
||
# Only build the PyOpenEXR (cmake --build --target PyOpenEXR). | ||
cmake.targets = ["Imath"] | ||
# Only install the "python" component (cmake --install --component python). | ||
# This makes sure that only files marked as "python" component are installed. | ||
install.components = ["python"] | ||
# strip debug symbols | ||
install.strip = true | ||
|
||
# Enable experimental features if any are available | ||
# In this case we need custom local plugin to get | ||
# the project version from cmake. | ||
experimental = true | ||
|
||
|
||
[tool.scikit-build.cmake.define] | ||
IMATH_INSTALL = 'OFF' | ||
IMATH_BUILD_PYTHON = 'ON' | ||
IMATH_BUILD_EXAMPLES = 'OFF' | ||
IMATH_BUILD_TOOLS = 'OFF' | ||
BUILD_SHARED_LIBS = 'OFF' | ||
CMAKE_OSX_DEPLOYMENT_TARGET = '10.15' | ||
CMAKE_POSITION_INDEPENDENT_CODE = 'ON' | ||
|
||
[tool.cibuildwheel] | ||
test-command = "pytest -s {project}/src/python/tests" | ||
test-requires = ["numpy"] | ||
test-extras = ["test"] | ||
test-skip = ["*universal2:arm64"] | ||
build-verbosity = 1 | ||
|
||
manylinux-x86_64-image = "manylinux2014" | ||
manylinux-i686-image = "manylinux2014" | ||
manylinux-aarch64-image = "manylinux2014" | ||
|
||
# Needed for full C++17 support | ||
[tool.cibuildwheel.macos.environment] | ||
MACOSX_DEPLOYMENT_TARGET = "10.15" |
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.
Double check which of these variables actually exist. I think
don't exist, that was copy/paste from OpenEXR.
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.
thanks was trying to figure out, thanks