Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27fc88e638 | ||
|
|
a7e9ece1d4 | ||
|
|
b9a3ed8c6a | ||
|
|
3dcc2ff07e | ||
|
|
1c9ec7664e | ||
|
|
22b433dc5f | ||
|
|
98fdf8c269 | ||
|
|
cefc5a5a0a | ||
|
|
e53253d7d9 | ||
|
|
e9ecc65ca5 | ||
|
|
e8e31505f3 | ||
|
|
5be731dfd0 | ||
|
|
c8a2671f2d | ||
|
|
ff8e121fac | ||
|
|
41daa4bd26 | ||
|
|
1e2cc2fc37 | ||
|
|
a5c5f5e0f0 | ||
|
|
d34e6eb63b |
@@ -34,7 +34,7 @@ jobs:
|
|||||||
name: artifact
|
name: artifact
|
||||||
path: dist
|
path: dist
|
||||||
|
|
||||||
- uses: pypa/gh-action-pypi-publish@v1.6.1
|
- uses: pypa/gh-action-pypi-publish@v1.6.4
|
||||||
with:
|
with:
|
||||||
user: __token__
|
user: __token__
|
||||||
password: ${{ secrets.pypi_password }}
|
password: ${{ secrets.pypi_password }}
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, windows-latest, macos-11]
|
os: [ubuntu-20.04, windows-latest, macos-11]
|
||||||
python_version: ['3.11']
|
python_version: ['3.11']
|
||||||
timeout-minutes: 180
|
timeout-minutes: 180
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ jobs:
|
|||||||
update-dependencies:
|
update-dependencies:
|
||||||
name: Update dependencies
|
name: Update dependencies
|
||||||
if: github.repository_owner == 'pypa' || github.event_name != 'schedule'
|
if: github.repository_owner == 'pypa' || github.event_name != 'schedule'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ repos:
|
|||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
|
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
rev: v3.3.0
|
rev: v3.3.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
args: ["--py37-plus"]
|
args: ["--py37-plus"]
|
||||||
@@ -29,14 +29,14 @@ repos:
|
|||||||
stages: [manual]
|
stages: [manual]
|
||||||
|
|
||||||
- repo: https://github.com/PyCQA/isort
|
- repo: https://github.com/PyCQA/isort
|
||||||
rev: 5.10.1
|
rev: v5.11.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: isort
|
||||||
args: ["-a", "from __future__ import annotations"]
|
args: ["-a", "from __future__ import annotations"]
|
||||||
exclude: ^cibuildwheel/resources/.*py$
|
exclude: ^cibuildwheel/resources/.*py$
|
||||||
|
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/psf/black
|
||||||
rev: 22.10.0
|
rev: 22.12.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
|
|
||||||
@@ -55,7 +55,7 @@ repos:
|
|||||||
args: ["--python-version=3.7"]
|
args: ["--python-version=3.7"]
|
||||||
additional_dependencies: &mypy-dependencies
|
additional_dependencies: &mypy-dependencies
|
||||||
- nox
|
- nox
|
||||||
- packaging>=21.0
|
- packaging~=21.0
|
||||||
- pygithub
|
- pygithub
|
||||||
- rich
|
- rich
|
||||||
- tomli
|
- tomli
|
||||||
@@ -98,7 +98,7 @@ repos:
|
|||||||
- id: python-use-type-annotations
|
- id: python-use-type-annotations
|
||||||
|
|
||||||
- repo: https://github.com/shellcheck-py/shellcheck-py
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
||||||
rev: v0.8.0.4
|
rev: v0.9.0.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: shellcheck
|
- id: shellcheck
|
||||||
|
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ jobs:
|
|||||||
- uses: actions/setup-python@v3
|
- uses: actions/setup-python@v3
|
||||||
|
|
||||||
- name: Install cibuildwheel
|
- name: Install cibuildwheel
|
||||||
run: python -m pip install cibuildwheel==2.11.3
|
run: python -m pip install cibuildwheel==2.11.4
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
run: python -m cibuildwheel --output-dir wheelhouse
|
run: python -m cibuildwheel --output-dir wheelhouse
|
||||||
@@ -209,6 +209,15 @@ Changelog
|
|||||||
|
|
||||||
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
|
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
|
||||||
|
|
||||||
|
### v2.11.4
|
||||||
|
|
||||||
|
_24 Dec 2022_
|
||||||
|
|
||||||
|
- 🐛 Fix a bug that caused missing wheels on Windows when a test was skipped using CIBW_TEST_SKIP (#1377)
|
||||||
|
- 🛠 Updates CPython 3.11 to 3.11.1 (#1371)
|
||||||
|
- 🛠 Updates PyPy to 7.3.10, except on macOS which remains on 7.3.9 due to a bug on that platform. (#1371)
|
||||||
|
- 📚 Added a reference to abi3audit to the docs (#1347)
|
||||||
|
|
||||||
### v2.11.3
|
### v2.11.3
|
||||||
|
|
||||||
_5 Dec 2022_
|
_5 Dec 2022_
|
||||||
@@ -248,14 +257,6 @@ _13 October 2022_
|
|||||||
- 📚 Sample configs for Azure Pipelines and Travis CI updated (#1296)
|
- 📚 Sample configs for Azure Pipelines and Travis CI updated (#1296)
|
||||||
- 📚 Other docs improvements - including more information about using Homebrew for build dependencies (#1290)
|
- 📚 Other docs improvements - including more information about using Homebrew for build dependencies (#1290)
|
||||||
|
|
||||||
### v2.10.2
|
|
||||||
|
|
||||||
_25 September 2022_
|
|
||||||
|
|
||||||
- 🐛 Fix a bug that caused `win32` identifiers to fail when used with `--only`. (#1282)
|
|
||||||
- 🐛 Fix computation of `auto`/`auto64`/`auto32` archs when targeting a different platform to the one that you're running cibuildwheel on. (#1266)
|
|
||||||
- 📚 Fix an mistake in the 'how it works' diagram. (#1274)
|
|
||||||
|
|
||||||
<!-- END bin/update_readme_changelog.py -->
|
<!-- END bin/update_readme_changelog.py -->
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
__version__ = "2.11.3"
|
__version__ = "2.11.4"
|
||||||
|
|||||||
@@ -81,12 +81,12 @@ python_configurations = [
|
|||||||
{ identifier = "cp39-macosx_x86_64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
{ identifier = "cp39-macosx_x86_64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
||||||
{ identifier = "cp39-macosx_arm64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
{ identifier = "cp39-macosx_arm64", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
||||||
{ identifier = "cp39-macosx_universal2", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
{ identifier = "cp39-macosx_universal2", version = "3.9", url = "https://www.python.org/ftp/python/3.9.13/python-3.9.13-macos11.pkg" },
|
||||||
{ identifier = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.8/python-3.10.8-macos11.pkg" },
|
{ identifier = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.9/python-3.10.9-macos11.pkg" },
|
||||||
{ identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.8/python-3.10.8-macos11.pkg" },
|
{ identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.9/python-3.10.9-macos11.pkg" },
|
||||||
{ identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.8/python-3.10.8-macos11.pkg" },
|
{ identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.9/python-3.10.9-macos11.pkg" },
|
||||||
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0-macos11.pkg" },
|
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.1/python-3.11.1-macos11.pkg" },
|
||||||
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0-macos11.pkg" },
|
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.1/python-3.11.1-macos11.pkg" },
|
||||||
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0-macos11.pkg" },
|
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.1/python-3.11.1-macos11.pkg" },
|
||||||
{ identifier = "pp37-macosx_x86_64", version = "3.7", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-osx64.tar.bz2" },
|
{ identifier = "pp37-macosx_x86_64", version = "3.7", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-osx64.tar.bz2" },
|
||||||
{ identifier = "pp38-macosx_x86_64", version = "3.8", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.9-osx64.tar.bz2" },
|
{ identifier = "pp38-macosx_x86_64", version = "3.8", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.9-osx64.tar.bz2" },
|
||||||
{ identifier = "pp39-macosx_x86_64", version = "3.9", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.9-osx64.tar.bz2" },
|
{ identifier = "pp39-macosx_x86_64", version = "3.9", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.9-osx64.tar.bz2" },
|
||||||
@@ -102,14 +102,14 @@ python_configurations = [
|
|||||||
{ identifier = "cp38-win_amd64", version = "3.8.10", arch = "64" },
|
{ identifier = "cp38-win_amd64", version = "3.8.10", arch = "64" },
|
||||||
{ identifier = "cp39-win32", version = "3.9.13", arch = "32" },
|
{ identifier = "cp39-win32", version = "3.9.13", arch = "32" },
|
||||||
{ identifier = "cp39-win_amd64", version = "3.9.13", arch = "64" },
|
{ identifier = "cp39-win_amd64", version = "3.9.13", arch = "64" },
|
||||||
{ identifier = "cp310-win32", version = "3.10.8", arch = "32" },
|
{ identifier = "cp310-win32", version = "3.10.9", arch = "32" },
|
||||||
{ identifier = "cp310-win_amd64", version = "3.10.8", arch = "64" },
|
{ identifier = "cp310-win_amd64", version = "3.10.9", arch = "64" },
|
||||||
{ identifier = "cp311-win32", version = "3.11.0", arch = "32" },
|
{ identifier = "cp311-win32", version = "3.11.1", arch = "32" },
|
||||||
{ identifier = "cp311-win_amd64", version = "3.11.0", arch = "64" },
|
{ identifier = "cp311-win_amd64", version = "3.11.1", arch = "64" },
|
||||||
{ identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" },
|
{ identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" },
|
||||||
{ identifier = "cp310-win_arm64", version = "3.10.8", arch = "ARM64" },
|
{ identifier = "cp310-win_arm64", version = "3.10.8", arch = "ARM64" },
|
||||||
{ identifier = "cp311-win_arm64", version = "3.11.0", arch = "ARM64" },
|
{ identifier = "cp311-win_arm64", version = "3.11.1", arch = "ARM64" },
|
||||||
{ identifier = "pp37-win_amd64", version = "3.7", arch = "64", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-win64.zip" },
|
{ identifier = "pp37-win_amd64", version = "3.7", arch = "64", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-win64.zip" },
|
||||||
{ identifier = "pp38-win_amd64", version = "3.8", arch = "64", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.9-win64.zip" },
|
{ identifier = "pp38-win_amd64", version = "3.8", arch = "64", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.10-win64.zip" },
|
||||||
{ identifier = "pp39-win_amd64", version = "3.9", arch = "64", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.9-win64.zip" },
|
{ identifier = "pp39-win_amd64", version = "3.9", arch = "64", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.10-win64.zip" },
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,30 +1,26 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.10
|
# This file is autogenerated by pip-compile with Python 3.10
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.10
|
# nox -s update_constraints-3.10
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via delocate
|
# via delocate
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -1,30 +1,26 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.11
|
# This file is autogenerated by pip-compile with Python 3.11
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.11
|
# nox -s update_constraints-3.11
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via delocate
|
# via delocate
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ typing-extensions==4.1.1
|
|||||||
# via
|
# via
|
||||||
# delocate
|
# delocate
|
||||||
# importlib-metadata
|
# importlib-metadata
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.37.1
|
wheel==0.37.1
|
||||||
# via
|
# via
|
||||||
|
|||||||
@@ -1,36 +1,32 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.7
|
# This file is autogenerated by pip-compile with Python 3.7
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.7
|
# nox -s update_constraints-3.7
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
importlib-metadata==5.1.0
|
importlib-metadata==5.2.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via
|
# via
|
||||||
# delocate
|
# delocate
|
||||||
# importlib-metadata
|
# importlib-metadata
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
zipp==3.11.0
|
zipp==3.11.0
|
||||||
# via importlib-metadata
|
# via importlib-metadata
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -1,30 +1,26 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.8
|
# This file is autogenerated by pip-compile with Python 3.8
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.8
|
# nox -s update_constraints-3.8
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via delocate
|
# via delocate
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -1,30 +1,26 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.9
|
# This file is autogenerated by pip-compile with Python 3.9
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.9
|
# nox -s update_constraints-3.9
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via delocate
|
# via delocate
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -1,30 +1,26 @@
|
|||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile with python 3.11
|
# This file is autogenerated by pip-compile with Python 3.11
|
||||||
# To update, run:
|
# by the following command:
|
||||||
#
|
#
|
||||||
# nox -s update_constraints-3.11
|
# nox -s update_constraints-3.11
|
||||||
#
|
#
|
||||||
delocate==0.10.3
|
delocate==0.10.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
distlib==0.3.6
|
distlib==0.3.6
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
filelock==3.8.0
|
filelock==3.8.2
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
packaging==21.3
|
packaging==22.0
|
||||||
# via delocate
|
# via delocate
|
||||||
platformdirs==2.5.4
|
pip==22.3.1
|
||||||
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
platformdirs==2.6.0
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
pyparsing==3.0.9
|
setuptools==65.6.3
|
||||||
# via packaging
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
# via delocate
|
# via delocate
|
||||||
virtualenv==20.17.0
|
virtualenv==20.17.1
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
wheel==0.38.4
|
wheel==0.38.4
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
# via -r cibuildwheel/resources/constraints.in
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
|
||||||
pip==22.3.1
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
setuptools==65.6.3
|
|
||||||
# via -r cibuildwheel/resources/constraints.in
|
|
||||||
|
|||||||
@@ -1,49 +1,49 @@
|
|||||||
[x86_64]
|
[x86_64]
|
||||||
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-11-27-4b40699
|
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-12-11-f594764
|
||||||
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
|
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-12-11-145d107
|
||||||
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-11-27-b2d7fda
|
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-12-11-145d107
|
||||||
|
|
||||||
[i686]
|
[i686]
|
||||||
manylinux1 = quay.io/pypa/manylinux1_i686:2022-11-27-4b40699
|
manylinux1 = quay.io/pypa/manylinux1_i686:2022-12-11-f594764
|
||||||
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
|
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-12-11-145d107
|
||||||
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-11-27-b2d7fda
|
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-12-11-145d107
|
||||||
|
|
||||||
[pypy_x86_64]
|
[pypy_x86_64]
|
||||||
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
|
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-12-11-145d107
|
||||||
|
|
||||||
[pypy_i686]
|
[pypy_i686]
|
||||||
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
|
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-12-11-145d107
|
||||||
|
|
||||||
[aarch64]
|
[aarch64]
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-12-11-145d107
|
||||||
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-11-27-b2d7fda
|
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-12-11-145d107
|
||||||
|
|
||||||
[ppc64le]
|
[ppc64le]
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2022-12-11-145d107
|
||||||
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-11-27-b2d7fda
|
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-12-11-145d107
|
||||||
|
|
||||||
[s390x]
|
[s390x]
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2022-12-11-145d107
|
||||||
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-11-27-b2d7fda
|
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-12-11-145d107
|
||||||
|
|
||||||
[pypy_aarch64]
|
[pypy_aarch64]
|
||||||
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-11-27-b2d7fda
|
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-12-11-145d107
|
||||||
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-11-27-b2d7fda
|
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-12-11-145d107
|
||||||
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-11-27-b2d7fda
|
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-12-11-145d107
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
version = "20.17.0"
|
version = "20.17.1"
|
||||||
url = "https://github.com/pypa/get-virtualenv/blob/20.17.0/public/virtualenv.pyz?raw=true"
|
url = "https://github.com/pypa/get-virtualenv/blob/20.17.1/public/virtualenv.pyz?raw=true"
|
||||||
|
|||||||
@@ -488,20 +488,19 @@ def build(options: Options, tmp_path: Path) -> None:
|
|||||||
if repaired_wheel.name in {wheel.name for wheel in built_wheels}:
|
if repaired_wheel.name in {wheel.name for wheel in built_wheels}:
|
||||||
raise AlreadyBuiltWheelError(repaired_wheel.name)
|
raise AlreadyBuiltWheelError(repaired_wheel.name)
|
||||||
|
|
||||||
if build_options.test_command and options.globals.test_selector(config.identifier):
|
test_selected = options.globals.test_selector(config.identifier)
|
||||||
if config.arch == "ARM64" != platform_module.machine():
|
if test_selected and config.arch == "ARM64" != platform_module.machine():
|
||||||
log.warning(
|
log.warning(
|
||||||
unwrap(
|
unwrap(
|
||||||
"""
|
"""
|
||||||
While arm64 wheels can be built on other platforms, they cannot
|
While arm64 wheels can be built on other platforms, they cannot
|
||||||
be tested. An arm64 runner is required. To silence this warning,
|
be tested. An arm64 runner is required. To silence this warning,
|
||||||
set `CIBW_TEST_SKIP: *-win_arm64`.
|
set `CIBW_TEST_SKIP: *-win_arm64`.
|
||||||
"""
|
"""
|
||||||
)
|
|
||||||
)
|
)
|
||||||
# skip this test
|
)
|
||||||
continue
|
# skip this test
|
||||||
|
elif test_selected and build_options.test_command:
|
||||||
log.step("Testing wheel...")
|
log.step("Testing wheel...")
|
||||||
# set up a virtual environment to install and test from, to make sure
|
# set up a virtual environment to install and test from, to make sure
|
||||||
# there are no dependencies that were pulled in at build time.
|
# there are no dependencies that were pulled in at build time.
|
||||||
|
|||||||
@@ -4,6 +4,15 @@ title: Changelog
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### v2.11.4
|
||||||
|
|
||||||
|
_24 Dec 2022_
|
||||||
|
|
||||||
|
- 🐛 Fix a bug that caused missing wheels on Windows when a test was skipped using CIBW_TEST_SKIP (#1377)
|
||||||
|
- 🛠 Updates CPython 3.11 to 3.11.1 (#1371)
|
||||||
|
- 🛠 Updates PyPy to 7.3.10, except on macOS which remains on 7.3.9 due to a bug on that platform. (#1371)
|
||||||
|
- 📚 Added a reference to abi3audit to the docs (#1347)
|
||||||
|
|
||||||
### v2.11.3
|
### v2.11.3
|
||||||
|
|
||||||
_5 Dec 2022_
|
_5 Dec 2022_
|
||||||
|
|||||||
+5
-3
@@ -118,6 +118,8 @@ The CPython Limited API is a subset of the Python C Extension API that's declare
|
|||||||
|
|
||||||
To create a package that builds ABI3 wheels, you'll need to configure your build backend to compile libraries correctly create wheels with the right tags. [Check this repo](https://github.com/joerick/python-abi3-package-sample) for an example of how to do this with setuptools.
|
To create a package that builds ABI3 wheels, you'll need to configure your build backend to compile libraries correctly create wheels with the right tags. [Check this repo](https://github.com/joerick/python-abi3-package-sample) for an example of how to do this with setuptools.
|
||||||
|
|
||||||
|
You could also consider running [abi3audit](https://github.com/trailofbits/abi3audit) against the produced wheels in order to check for abi3 violations or inconsistencies. You can run it alongside the default in your [CIBW_REPAIR_WHEEL_COMMAND](options.md#repair-wheel-command).
|
||||||
|
|
||||||
### Packages with optional C extensions {: #optional-extensions}
|
### Packages with optional C extensions {: #optional-extensions}
|
||||||
|
|
||||||
`cibuildwheel` defines the environment variable `CIBUILDWHEEL` to the value `1` allowing projects for which the C extension is optional to make it mandatory when building wheels.
|
`cibuildwheel` defines the environment variable `CIBUILDWHEEL` to the value `1` allowing projects for which the C extension is optional to make it mandatory when building wheels.
|
||||||
@@ -143,7 +145,7 @@ There are two suggested methods for keeping cibuildwheel up to date that instead
|
|||||||
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
|
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: pypa/cibuildwheel@v2.11.3
|
uses: pypa/cibuildwheel@v2.11.4
|
||||||
```
|
```
|
||||||
|
|
||||||
This is a composite step that just runs cibuildwheel using pipx. You can set command-line options as `with:` parameters, and use `env:` as normal.
|
This is a composite step that just runs cibuildwheel using pipx. You can set command-line options as `with:` parameters, and use `env:` as normal.
|
||||||
@@ -165,7 +167,7 @@ The second option, and the only one that supports other CI systems, is using a `
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# requirements-cibw.txt
|
# requirements-cibw.txt
|
||||||
cibuildwheel==2.11.3
|
cibuildwheel==2.11.4
|
||||||
```
|
```
|
||||||
|
|
||||||
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `.github/dependabot.yml` file could look like this:
|
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `.github/dependabot.yml` file could look like this:
|
||||||
@@ -309,7 +311,7 @@ Solutions to this vary, but the simplest is to use pipx:
|
|||||||
# most runners have pipx preinstalled, but in case you don't
|
# most runners have pipx preinstalled, but in case you don't
|
||||||
python3 -m pip install pipx
|
python3 -m pip install pipx
|
||||||
|
|
||||||
pipx run cibuildwheel==2.11.3 --output-dir wheelhouse
|
pipx run cibuildwheel==2.11.4 --output-dir wheelhouse
|
||||||
pipx run twine upload wheelhouse/*.whl
|
pipx run twine upload wheelhouse/*.whl
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -898,6 +898,18 @@ Platform-specific environment variables are also available:<br/>
|
|||||||
python scripts/check_repaired_wheel.py -w {dest_dir} {wheel}
|
python scripts/check_repaired_wheel.py -w {dest_dir} {wheel}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Use abi3audit to catch issues with Limited API wheels
|
||||||
|
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
|
||||||
|
auditwheel repair -w {dest_dir} {wheel} &&
|
||||||
|
pipx run abi3audit --strict --report {wheel}
|
||||||
|
CIBW_REPAIR_WHEEL_COMMAND_MACOS: >
|
||||||
|
delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} &&
|
||||||
|
pipx run abi3audit --strict --report {wheel}
|
||||||
|
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >
|
||||||
|
pipx run abi3audit --strict --report {wheel}
|
||||||
|
```
|
||||||
|
|
||||||
!!! tab examples "pyproject.toml"
|
!!! tab examples "pyproject.toml"
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
@@ -922,6 +934,22 @@ Platform-specific environment variables are also available:<br/>
|
|||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# Use abi3audit to catch issues with Limited API wheels
|
||||||
|
[tool.cibuildwheel.linux]
|
||||||
|
repair-wheel-command = [
|
||||||
|
"auditwheel repair -w {dest_dir} {wheel}",
|
||||||
|
"pipx run abi3audit --strict --report {wheel}",
|
||||||
|
]
|
||||||
|
[tool.cibuildwheel.macos]
|
||||||
|
repair-wheel-command = [
|
||||||
|
"delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}",
|
||||||
|
"pipx run abi3audit --strict --report {wheel}",
|
||||||
|
]
|
||||||
|
[tool.cibuildwheel.windows]
|
||||||
|
repair-wheel-command = "pipx run abi3audit --strict --report {wheel}"
|
||||||
|
```
|
||||||
|
|
||||||
In configuration mode, you can use an inline array, and the items will be joined with `&&`.
|
In configuration mode, you can use an inline array, and the items will be joined with `&&`.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -184,7 +184,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
run: pipx run cibuildwheel==2.11.3
|
run: pipx run cibuildwheel==2.11.4
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
@@ -219,7 +219,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
|
|||||||
- uses: actions/setup-python@v3
|
- uses: actions/setup-python@v3
|
||||||
|
|
||||||
- name: Install cibuildwheel
|
- name: Install cibuildwheel
|
||||||
run: python -m pip install cibuildwheel==2.11.3
|
run: python -m pip install cibuildwheel==2.11.4
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
run: python -m cibuildwheel --output-dir wheelhouse
|
run: python -m cibuildwheel --output-dir wheelhouse
|
||||||
|
|||||||
+13
-13
@@ -30,12 +30,12 @@ title: Working examples
|
|||||||
| [cmake][] | ![github icon][] ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Multitagged binary builds for all supported platforms, using cibw 2 config configuration. |
|
| [cmake][] | ![github icon][] ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Multitagged binary builds for all supported platforms, using cibw 2 config configuration. |
|
||||||
| [scikit-image][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Image processing library. Uses cibuildwheel to build and test a project that uses Cython with platform-native code. |
|
| [scikit-image][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Image processing library. Uses cibuildwheel to build and test a project that uses Cython with platform-native code. |
|
||||||
| [twisted-iocpsupport][] | ![github icon][] | ![windows icon][] | A submodule of Twisted that hooks into native C APIs using Cython. |
|
| [twisted-iocpsupport][] | ![github icon][] | ![windows icon][] | A submodule of Twisted that hooks into native C APIs using Cython. |
|
||||||
|
| [Triton][] | ![github icon][] | ![linux icon][] | Self hosted runners |
|
||||||
| [PyOxidizer][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A modern Python application packaging and distribution tool |
|
| [PyOxidizer][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A modern Python application packaging and distribution tool |
|
||||||
| [websockets][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Library for building WebSocket servers and clients. Mostly written in Python, with a small C 'speedups' extension module. |
|
| [websockets][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Library for building WebSocket servers and clients. Mostly written in Python, with a small C 'speedups' extension module. |
|
||||||
| [Triton][] | ![github icon][] | ![linux icon][] | Self hosted runners |
|
|
||||||
| [cvxpy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A Python-embedded modeling language for convex optimization problems. |
|
| [cvxpy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A Python-embedded modeling language for convex optimization problems. |
|
||||||
| [UltraJSON][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Ultra fast JSON decoder and encoder written in C with Python bindings |
|
|
||||||
| [River][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | 🌊 Online machine learning in Python |
|
| [River][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | 🌊 Online machine learning in Python |
|
||||||
|
| [UltraJSON][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Ultra fast JSON decoder and encoder written in C with Python bindings |
|
||||||
| [OpenSpiel][] | ![github icon][] | ![apple icon][] ![linux icon][] | OpenSpiel is a collection of environments and algorithms for research in general reinforcement learning and search/planning in games. |
|
| [OpenSpiel][] | ![github icon][] | ![apple icon][] ![linux icon][] | OpenSpiel is a collection of environments and algorithms for research in general reinforcement learning and search/planning in games. |
|
||||||
| [pyzmq][] | ![github icon][] ![circleci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python bindings for zeromq, the networking library. Uses Cython on CPython and CFFI on PyPy. ARM wheels for linux are built natively on CircleCI. |
|
| [pyzmq][] | ![github icon][] ![circleci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python bindings for zeromq, the networking library. Uses Cython on CPython and CFFI on PyPy. ARM wheels for linux are built natively on CircleCI. |
|
||||||
| [aiortc][] | ![github icon][] | ![apple icon][] ![linux icon][] | WebRTC and ORTC implementation for Python using asyncio. |
|
| [aiortc][] | ![github icon][] | ![apple icon][] ![linux icon][] | WebRTC and ORTC implementation for Python using asyncio. |
|
||||||
@@ -55,10 +55,10 @@ title: Working examples
|
|||||||
| [SimpleJSON][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | simplejson is a simple, fast, extensible JSON encoder/decoder for Python |
|
| [SimpleJSON][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | simplejson is a simple, fast, extensible JSON encoder/decoder for Python |
|
||||||
| [Line Profiler][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Line-by-line profiling for Python |
|
| [Line Profiler][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Line-by-line profiling for Python |
|
||||||
| [OpenColorIO][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A color management framework for visual effects and animation. |
|
| [OpenColorIO][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A color management framework for visual effects and animation. |
|
||||||
| [envd][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | 🏕️ Reproducible development environment for Python, R and Julia |
|
| [envd][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | 🏕️ Reproducible development environment for AI/ML |
|
||||||
| [PyTables][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python package to manage extremely large amounts of data |
|
| [PyTables][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python package to manage extremely large amounts of data |
|
||||||
| [OpenTimelineIO][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Open Source API and interchange format for editorial timeline information. |
|
|
||||||
| [aioquic][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | QUIC and HTTP/3 implementation in Python |
|
| [aioquic][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | QUIC and HTTP/3 implementation in Python |
|
||||||
|
| [OpenTimelineIO][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Open Source API and interchange format for editorial timeline information. |
|
||||||
| [ruptures][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Extensive Cython + NumPy [pyproject.toml](https://github.com/deepcharles/ruptures/blob/master/pyproject.toml) example. |
|
| [ruptures][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Extensive Cython + NumPy [pyproject.toml](https://github.com/deepcharles/ruptures/blob/master/pyproject.toml) example. |
|
||||||
| [Psycopg 3][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A modern implementation of a PostgreSQL adapter for Python |
|
| [Psycopg 3][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A modern implementation of a PostgreSQL adapter for Python |
|
||||||
| [DeepForest][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | An Efficient, Scalable and Optimized Python Framework for Deep Forest (2021.2.1) |
|
| [DeepForest][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | An Efficient, Scalable and Optimized Python Framework for Deep Forest (2021.2.1) |
|
||||||
@@ -74,9 +74,9 @@ title: Working examples
|
|||||||
| [python-snappy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Python bindings for the snappy google library |
|
| [python-snappy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Python bindings for the snappy google library |
|
||||||
| [KDEpy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Kernel Density Estimation in Python |
|
| [KDEpy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Kernel Density Estimation in Python |
|
||||||
| [tgcalls][] | ![github icon][] | ![apple icon][] ![windows icon][] | Python `pybind11` binding to Telegram's WebRTC library with third party dependencies like `OpenSSL`, `MozJPEG`, `FFmpeg`, etc. |
|
| [tgcalls][] | ![github icon][] | ![apple icon][] ![windows icon][] | Python `pybind11` binding to Telegram's WebRTC library with third party dependencies like `OpenSSL`, `MozJPEG`, `FFmpeg`, etc. |
|
||||||
|
| [CTranslate2][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes libraries from the [Intel oneAPI toolkit](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit.html) and CUDA kernels compiled for multiple GPU architectures. |
|
||||||
| [pybind11 python_example][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Example pybind11 module built with a Python-based build system |
|
| [pybind11 python_example][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Example pybind11 module built with a Python-based build system |
|
||||||
| [dd-trace-py][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Uses custom alternate arch emulation on GitHub |
|
| [dd-trace-py][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Uses custom alternate arch emulation on GitHub |
|
||||||
| [CTranslate2][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes libraries from the [Intel oneAPI toolkit](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit.html) and CUDA kernels compiled for multiple GPU architectures. |
|
|
||||||
| [time-machine][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Time mocking library using only the CPython C API. |
|
| [time-machine][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Time mocking library using only the CPython C API. |
|
||||||
| [sourmash][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Quickly search, compare, and analyze genomic and metagenomic data sets. |
|
| [sourmash][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Quickly search, compare, and analyze genomic and metagenomic data sets. |
|
||||||
| [cyvcf2][] | ![github icon][] | ![apple icon][] ![linux icon][] | cython + htslib == fast VCF and BCF processing |
|
| [cyvcf2][] | ![github icon][] | ![apple icon][] ![linux icon][] | cython + htslib == fast VCF and BCF processing |
|
||||||
@@ -96,8 +96,8 @@ title: Working examples
|
|||||||
| [Arbor][] | ![github icon][] | ![apple icon][] ![linux icon][] | Arbor is a multi-compartment neuron simulation library; compatible with next-generation accelerators; best-practices applied to research software; focused on community-driven development. Includes a [small script](https://github.com/arbor-sim/arbor/blob/master/scripts/patchwheel.py) patching `rpath` in bundled libraries. |
|
| [Arbor][] | ![github icon][] | ![apple icon][] ![linux icon][] | Arbor is a multi-compartment neuron simulation library; compatible with next-generation accelerators; best-practices applied to research software; focused on community-driven development. Includes a [small script](https://github.com/arbor-sim/arbor/blob/master/scripts/patchwheel.py) patching `rpath` in bundled libraries. |
|
||||||
| [fathon][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | python package for DFA (Detrended Fluctuation Analysis) and related algorithms |
|
| [fathon][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | python package for DFA (Detrended Fluctuation Analysis) and related algorithms |
|
||||||
| [pillow-heif][] | ![github icon][] | ![apple icon][] ![linux icon][] | Python CFFI binding to libheif library with third party dependencies like `libde265`, `x265`, `libaom` with test & publishing on PyPi. |
|
| [pillow-heif][] | ![github icon][] | ![apple icon][] ![linux icon][] | Python CFFI binding to libheif library with third party dependencies like `libde265`, `x265`, `libaom` with test & publishing on PyPi. |
|
||||||
| [etebase-py][] | ![travisci icon][] | ![linux icon][] | Python bindings to a Rust library using `setuptools-rust`, and `sccache` for improved speed. |
|
|
||||||
| [polaroid][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Full range of wheels for setuptools rust, with auto release and PyPI deploy. |
|
| [polaroid][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Full range of wheels for setuptools rust, with auto release and PyPI deploy. |
|
||||||
|
| [etebase-py][] | ![travisci icon][] | ![linux icon][] | Python bindings to a Rust library using `setuptools-rust`, and `sccache` for improved speed. |
|
||||||
| [power-grid-model][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python/C++ library for distribution power system analysis |
|
| [power-grid-model][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python/C++ library for distribution power system analysis |
|
||||||
| [Imagecodecs (fork)][] | ![azurepipelines icon][] | ![apple icon][] ![linux icon][] | Over 20 external dependencies in compiled libraries, custom docker image, `libomp`, `openblas` and `install_name_tool` for macOS. |
|
| [Imagecodecs (fork)][] | ![azurepipelines icon][] | ![apple icon][] ![linux icon][] | Over 20 external dependencies in compiled libraries, custom docker image, `libomp`, `openblas` and `install_name_tool` for macOS. |
|
||||||
| [cf-units][] | ![github icon][] | ![apple icon][] ![linux icon][] | Units of measure as required by the Climate and Forecast (CF) Metadata Conventions |
|
| [cf-units][] | ![github icon][] | ![apple icon][] ![linux icon][] | Units of measure as required by the Climate and Forecast (CF) Metadata Conventions |
|
||||||
@@ -107,8 +107,8 @@ title: Working examples
|
|||||||
| [pyjet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The interface between FastJet and NumPy |
|
| [pyjet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The interface between FastJet and NumPy |
|
||||||
| [ninja][] | ![github icon][] ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Multitagged binary builds for all supported platforms, using cibw 2 config configuration. |
|
| [ninja][] | ![github icon][] ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Multitagged binary builds for all supported platforms, using cibw 2 config configuration. |
|
||||||
| [GSD][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Cython and NumPy project with 64-bit wheels. |
|
| [GSD][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Cython and NumPy project with 64-bit wheels. |
|
||||||
| [CorrectionLib][] | ![github icon][] | ![apple icon][] ![linux icon][] | Structured JSON powered correction library for HEP, designed for the CMS experiment at CERN. |
|
|
||||||
| [ril][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A python binding to Rust Imaging library using maturin and Pyo3, utilizes Github Action cache to improve speed. Builds abi3 wheels. |
|
| [ril][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A python binding to Rust Imaging library using maturin and Pyo3, utilizes Github Action cache to improve speed. Builds abi3 wheels. |
|
||||||
|
| [CorrectionLib][] | ![github icon][] | ![apple icon][] ![linux icon][] | Structured JSON powered correction library for HEP, designed for the CMS experiment at CERN. |
|
||||||
| [pyinstrument_cext][] | ![travisci icon][] ![appveyor icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A simple C extension, without external dependencies |
|
| [pyinstrument_cext][] | ![travisci icon][] ![appveyor icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A simple C extension, without external dependencies |
|
||||||
| [SiPM][] | ![github icon][] | ![apple icon][] ![linux icon][] | High performance library for SiPM detectors simulation using C++17, OpenMP and AVX2 intrinsics. |
|
| [SiPM][] | ![github icon][] | ![apple icon][] ![linux icon][] | High performance library for SiPM detectors simulation using C++17, OpenMP and AVX2 intrinsics. |
|
||||||
| [xmlstarlet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python 3.6+ CFFI bindings with true MSVC build. |
|
| [xmlstarlet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python 3.6+ CFFI bindings with true MSVC build. |
|
||||||
@@ -136,12 +136,12 @@ title: Working examples
|
|||||||
[cmake]: https://github.com/scikit-build/cmake-python-distributions
|
[cmake]: https://github.com/scikit-build/cmake-python-distributions
|
||||||
[scikit-image]: https://github.com/scikit-image/scikit-image
|
[scikit-image]: https://github.com/scikit-image/scikit-image
|
||||||
[twisted-iocpsupport]: https://github.com/twisted/twisted-iocpsupport
|
[twisted-iocpsupport]: https://github.com/twisted/twisted-iocpsupport
|
||||||
|
[Triton]: https://github.com/openai/triton
|
||||||
[PyOxidizer]: https://github.com/indygreg/PyOxidizer
|
[PyOxidizer]: https://github.com/indygreg/PyOxidizer
|
||||||
[websockets]: https://github.com/aaugustin/websockets
|
[websockets]: https://github.com/aaugustin/websockets
|
||||||
[Triton]: https://github.com/openai/triton
|
|
||||||
[cvxpy]: https://github.com/cvxpy/cvxpy
|
[cvxpy]: https://github.com/cvxpy/cvxpy
|
||||||
[UltraJSON]: https://github.com/ultrajson/ultrajson
|
|
||||||
[River]: https://github.com/online-ml/river
|
[River]: https://github.com/online-ml/river
|
||||||
|
[UltraJSON]: https://github.com/ultrajson/ultrajson
|
||||||
[OpenSpiel]: https://github.com/deepmind/open_spiel
|
[OpenSpiel]: https://github.com/deepmind/open_spiel
|
||||||
[pyzmq]: https://github.com/zeromq/pyzmq
|
[pyzmq]: https://github.com/zeromq/pyzmq
|
||||||
[aiortc]: https://github.com/aiortc/aiortc
|
[aiortc]: https://github.com/aiortc/aiortc
|
||||||
@@ -163,8 +163,8 @@ title: Working examples
|
|||||||
[OpenColorIO]: https://github.com/AcademySoftwareFoundation/OpenColorIO
|
[OpenColorIO]: https://github.com/AcademySoftwareFoundation/OpenColorIO
|
||||||
[envd]: https://github.com/tensorchord/envd
|
[envd]: https://github.com/tensorchord/envd
|
||||||
[PyTables]: https://github.com/PyTables/PyTables
|
[PyTables]: https://github.com/PyTables/PyTables
|
||||||
[OpenTimelineIO]: https://github.com/PixarAnimationStudios/OpenTimelineIO
|
|
||||||
[aioquic]: https://github.com/aiortc/aioquic
|
[aioquic]: https://github.com/aiortc/aioquic
|
||||||
|
[OpenTimelineIO]: https://github.com/PixarAnimationStudios/OpenTimelineIO
|
||||||
[ruptures]: https://github.com/deepcharles/ruptures
|
[ruptures]: https://github.com/deepcharles/ruptures
|
||||||
[Psycopg 3]: https://github.com/psycopg/psycopg
|
[Psycopg 3]: https://github.com/psycopg/psycopg
|
||||||
[DeepForest]: https://github.com/LAMDA-NJU/Deep-Forest
|
[DeepForest]: https://github.com/LAMDA-NJU/Deep-Forest
|
||||||
@@ -180,9 +180,9 @@ title: Working examples
|
|||||||
[python-snappy]: https://github.com/andrix/python-snappy
|
[python-snappy]: https://github.com/andrix/python-snappy
|
||||||
[KDEpy]: https://github.com/tommyod/KDEpy
|
[KDEpy]: https://github.com/tommyod/KDEpy
|
||||||
[tgcalls]: https://github.com/MarshalX/tgcalls
|
[tgcalls]: https://github.com/MarshalX/tgcalls
|
||||||
|
[CTranslate2]: https://github.com/OpenNMT/CTranslate2
|
||||||
[pybind11 python_example]: https://github.com/pybind/python_example
|
[pybind11 python_example]: https://github.com/pybind/python_example
|
||||||
[dd-trace-py]: https://github.com/DataDog/dd-trace-py
|
[dd-trace-py]: https://github.com/DataDog/dd-trace-py
|
||||||
[CTranslate2]: https://github.com/OpenNMT/CTranslate2
|
|
||||||
[time-machine]: https://github.com/adamchainz/time-machine
|
[time-machine]: https://github.com/adamchainz/time-machine
|
||||||
[sourmash]: https://github.com/dib-lab/sourmash
|
[sourmash]: https://github.com/dib-lab/sourmash
|
||||||
[cyvcf2]: https://github.com/brentp/cyvcf2
|
[cyvcf2]: https://github.com/brentp/cyvcf2
|
||||||
@@ -202,8 +202,8 @@ title: Working examples
|
|||||||
[Arbor]: https://github.com/arbor-sim/arbor
|
[Arbor]: https://github.com/arbor-sim/arbor
|
||||||
[fathon]: https://github.com/stfbnc/fathon
|
[fathon]: https://github.com/stfbnc/fathon
|
||||||
[pillow-heif]: https://github.com/bigcat88/pillow_heif
|
[pillow-heif]: https://github.com/bigcat88/pillow_heif
|
||||||
[etebase-py]: https://github.com/etesync/etebase-py
|
|
||||||
[polaroid]: https://github.com/daggy1234/polaroid
|
[polaroid]: https://github.com/daggy1234/polaroid
|
||||||
|
[etebase-py]: https://github.com/etesync/etebase-py
|
||||||
[power-grid-model]: https://github.com/alliander-opensource/power-grid-model
|
[power-grid-model]: https://github.com/alliander-opensource/power-grid-model
|
||||||
[Imagecodecs (fork)]: https://github.com/czaki/imagecodecs_build
|
[Imagecodecs (fork)]: https://github.com/czaki/imagecodecs_build
|
||||||
[cf-units]: https://github.com/SciTools/cf-units
|
[cf-units]: https://github.com/SciTools/cf-units
|
||||||
@@ -213,8 +213,8 @@ title: Working examples
|
|||||||
[pyjet]: https://github.com/scikit-hep/pyjet
|
[pyjet]: https://github.com/scikit-hep/pyjet
|
||||||
[ninja]: https://github.com/scikit-build/ninja-python-distributions
|
[ninja]: https://github.com/scikit-build/ninja-python-distributions
|
||||||
[GSD]: https://github.com/glotzerlab/gsd
|
[GSD]: https://github.com/glotzerlab/gsd
|
||||||
[CorrectionLib]: https://github.com/cms-nanoAOD/correctionlib
|
|
||||||
[ril]: https://github.com/Cryptex-github/ril-py
|
[ril]: https://github.com/Cryptex-github/ril-py
|
||||||
|
[CorrectionLib]: https://github.com/cms-nanoAOD/correctionlib
|
||||||
[pyinstrument_cext]: https://github.com/joerick/pyinstrument_cext
|
[pyinstrument_cext]: https://github.com/joerick/pyinstrument_cext
|
||||||
[SiPM]: https://github.com/EdoPro98/SimSiPM
|
[SiPM]: https://github.com/EdoPro98/SimSiPM
|
||||||
[xmlstarlet]: https://github.com/dimitern/xmlstarlet
|
[xmlstarlet]: https://github.com/dimitern/xmlstarlet
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ stack: python 3.7
|
|||||||
init:
|
init:
|
||||||
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
|
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
|
||||||
|
|
||||||
install: python -m pip install cibuildwheel==2.11.3
|
install: python -m pip install cibuildwheel==2.11.4
|
||||||
|
|
||||||
build_script: python -m cibuildwheel --output-dir wheelhouse
|
build_script: python -m cibuildwheel --output-dir wheelhouse
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ jobs:
|
|||||||
- bash: |
|
- bash: |
|
||||||
set -o errexit
|
set -o errexit
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
pip3 install cibuildwheel==2.11.3
|
pip3 install cibuildwheel==2.11.4
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- bash: cibuildwheel --output-dir wheelhouse .
|
- bash: cibuildwheel --output-dir wheelhouse .
|
||||||
displayName: Build wheels
|
displayName: Build wheels
|
||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- bash: |
|
- bash: |
|
||||||
set -o errexit
|
set -o errexit
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install cibuildwheel==2.11.3
|
python3 -m pip install cibuildwheel==2.11.4
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- bash: cibuildwheel --output-dir wheelhouse .
|
- bash: cibuildwheel --output-dir wheelhouse .
|
||||||
displayName: Build wheels
|
displayName: Build wheels
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
- bash: |
|
- bash: |
|
||||||
set -o errexit
|
set -o errexit
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install cibuildwheel==2.11.3
|
pip install cibuildwheel==2.11.4
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- bash: cibuildwheel --output-dir wheelhouse .
|
- bash: cibuildwheel --output-dir wheelhouse .
|
||||||
displayName: Build wheels
|
displayName: Build wheels
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Build the Linux wheels.
|
name: Build the Linux wheels.
|
||||||
command: |
|
command: |
|
||||||
pip3 install --user cibuildwheel==2.11.3
|
pip3 install --user cibuildwheel==2.11.4
|
||||||
cibuildwheel --output-dir wheelhouse
|
cibuildwheel --output-dir wheelhouse
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: wheelhouse/
|
path: wheelhouse/
|
||||||
@@ -28,7 +28,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Build the Linux aarch64 wheels.
|
name: Build the Linux aarch64 wheels.
|
||||||
command: |
|
command: |
|
||||||
python3 -m pip install --user cibuildwheel==2.11.3
|
python3 -m pip install --user cibuildwheel==2.11.4
|
||||||
python3 -m cibuildwheel --output-dir wheelhouse
|
python3 -m cibuildwheel --output-dir wheelhouse
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: wheelhouse/
|
path: wheelhouse/
|
||||||
@@ -42,7 +42,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Build the OS X wheels.
|
name: Build the OS X wheels.
|
||||||
command: |
|
command: |
|
||||||
pip3 install cibuildwheel==2.11.3
|
pip3 install cibuildwheel==2.11.4
|
||||||
cibuildwheel --output-dir wheelhouse
|
cibuildwheel --output-dir wheelhouse
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: wheelhouse/
|
path: wheelhouse/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
|
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
|
||||||
install_cibuildwheel_script:
|
install_cibuildwheel_script:
|
||||||
- python -m pip install cibuildwheel==2.11.3
|
- python -m pip install cibuildwheel==2.11.4
|
||||||
run_cibuildwheel_script:
|
run_cibuildwheel_script:
|
||||||
- cibuildwheel
|
- cibuildwheel
|
||||||
wheels_artifacts:
|
wheels_artifacts:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
|
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
|
||||||
install_cibuildwheel_script:
|
install_cibuildwheel_script:
|
||||||
- python -m pip install cibuildwheel==2.11.3
|
- python -m pip install cibuildwheel==2.11.4
|
||||||
run_cibuildwheel_script:
|
run_cibuildwheel_script:
|
||||||
- cibuildwheel
|
- cibuildwheel
|
||||||
wheels_artifacts:
|
wheels_artifacts:
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: pypa/cibuildwheel@v2.11.3
|
uses: pypa/cibuildwheel@v2.11.4
|
||||||
env:
|
env:
|
||||||
CIBW_ARCHS_MACOS: x86_64 arm64
|
CIBW_ARCHS_MACOS: x86_64 arm64
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: pypa/cibuildwheel@v2.11.3
|
uses: pypa/cibuildwheel@v2.11.4
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: pypa/cibuildwheel@v2.11.3
|
uses: pypa/cibuildwheel@v2.11.4
|
||||||
# env:
|
# env:
|
||||||
# CIBW_SOME_OPTION: value
|
# CIBW_SOME_OPTION: value
|
||||||
# ...
|
# ...
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
platforms: all
|
platforms: all
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: pypa/cibuildwheel@v2.11.3
|
uses: pypa/cibuildwheel@v2.11.4
|
||||||
env:
|
env:
|
||||||
# configure cibuildwheel to build native archs ('auto'), and some
|
# configure cibuildwheel to build native archs ('auto'), and some
|
||||||
# emulated ones
|
# emulated ones
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ linux:
|
|||||||
DOCKER_TLS_CERTDIR: ""
|
DOCKER_TLS_CERTDIR: ""
|
||||||
script:
|
script:
|
||||||
- curl -sSL https://get.docker.com/ | sh
|
- curl -sSL https://get.docker.com/ | sh
|
||||||
- python -m pip install cibuildwheel==2.11.3
|
- python -m pip install cibuildwheel==2.11.4
|
||||||
- cibuildwheel --output-dir wheelhouse
|
- cibuildwheel --output-dir wheelhouse
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
@@ -23,7 +23,7 @@ windows:
|
|||||||
before_script:
|
before_script:
|
||||||
- choco install python -y --version 3.8.6
|
- choco install python -y --version 3.8.6
|
||||||
- choco install git.install -y
|
- choco install git.install -y
|
||||||
- py -m pip install cibuildwheel==2.11.3
|
- py -m pip install cibuildwheel==2.11.4
|
||||||
script:
|
script:
|
||||||
- py -m cibuildwheel --output-dir wheelhouse --platform windows
|
- py -m cibuildwheel --output-dir wheelhouse --platform windows
|
||||||
artifacts:
|
artifacts:
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ linux:
|
|||||||
- curl -sSL https://get.docker.com/ | sh
|
- curl -sSL https://get.docker.com/ | sh
|
||||||
# Warning: This is extremely slow, be careful with how many wheels you build
|
# Warning: This is extremely slow, be careful with how many wheels you build
|
||||||
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||||
- python -m pip install cibuildwheel==2.11.3
|
- python -m pip install cibuildwheel==2.11.4
|
||||||
# Assuming your CI runner's default architecture is x86_64...
|
# Assuming your CI runner's default architecture is x86_64...
|
||||||
- cibuildwheel --output-dir wheelhouse --platform linux --archs aarch64
|
- cibuildwheel --output-dir wheelhouse --platform linux --archs aarch64
|
||||||
artifacts:
|
artifacts:
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- python3 -m pip install cibuildwheel==2.11.3
|
- python3 -m pip install cibuildwheel==2.11.4
|
||||||
|
|
||||||
script:
|
script:
|
||||||
# build the wheels, put them into './dist'
|
# build the wheels, put them into './dist'
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- python3 -m pip install cibuildwheel==2.11.3
|
- python3 -m pip install cibuildwheel==2.11.4
|
||||||
|
|
||||||
script:
|
script:
|
||||||
# build the wheels, put them into './wheelhouse'
|
# build the wheels, put them into './wheelhouse'
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ jobs:
|
|||||||
- stage: deploy
|
- stage: deploy
|
||||||
name: Build and deploy Linux wheels
|
name: Build and deploy Linux wheels
|
||||||
services: docker
|
services: docker
|
||||||
install: python3 -m pip install cibuildwheel==2.11.3 twine
|
install: python3 -m pip install cibuildwheel==2.11.4 twine
|
||||||
script: python3 -m cibuildwheel --output-dir wheelhouse
|
script: python3 -m cibuildwheel --output-dir wheelhouse
|
||||||
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
|
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
|
||||||
# Deploy on windows
|
# Deploy on windows
|
||||||
@@ -62,7 +62,7 @@ jobs:
|
|||||||
name: Build and deploy Windows wheels
|
name: Build and deploy Windows wheels
|
||||||
os: windows
|
os: windows
|
||||||
language: shell
|
language: shell
|
||||||
install: python3 -m pip install cibuildwheel==2.11.3 twine
|
install: python3 -m pip install cibuildwheel==2.11.4 twine
|
||||||
script: python3 -m cibuildwheel --output-dir wheelhouse
|
script: python3 -m cibuildwheel --output-dir wheelhouse
|
||||||
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
|
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = cibuildwheel
|
name = cibuildwheel
|
||||||
version = 2.11.3
|
version = 2.11.4
|
||||||
description = Build Python wheels on CI with minimal configuration.
|
description = Build Python wheels on CI with minimal configuration.
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
|
|||||||
Reference in New Issue
Block a user