Compare commits

...
4 Commits
Author SHA1 Message Date
Joe Rickerby 1904551399 Bump version: v2.11.1 2022-10-13 11:45:09 +01:00
Joe Rickerby eb50dffe41 Merge pull request #1309 from pypa/update-dependencies-pr
[Bot] Update dependencies
2022-10-13 11:40:00 +01:00
Joe Rickerby a560b0e86e Fix mistake in Gitlab CI config 2022-10-13 10:13:23 +01:00
cibuildwheel-bot[bot] 80a2e1ab43 Update dependencies 2022-10-13 09:02:38 +00:00
24 changed files with 193 additions and 187 deletions
+1 -1
View File
@@ -25,8 +25,8 @@ windows:
before_script:
- choco install python -y --version 3.8.6
script:
- py -m cibuildwheel --output-dir wheelhouse --platform windows
- py -m pip install -e ".[dev]" pytest-custom-exit-code
- py -m cibuildwheel --output-dir wheelhouse --platform windows
- py bin\run_tests.py
tags:
- windows
+7 -10
View File
@@ -93,7 +93,7 @@ jobs:
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.11.0
run: python -m pip install cibuildwheel==2.11.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
@@ -209,6 +209,12 @@ Changelog
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
### v2.11.1
_13 October 2022_
- 🛠 Updates to the latest manylinux images, and updates CPython 3.10 to 3.10.8.
### v2.11.0
_13 October 2022_
@@ -248,15 +254,6 @@ _13 September 2022_
- 🐛 Fix a bug that can cause a RecursionError on Windows when building from an sdist. (#1253)
- 🛠 Add support for the s390x architecture on manylinux_2_28 (#1255)
### v2.9.0
_11 August 2022_
- 🌟 CPython 3.11 wheels are now built by default - without the CIBW_PRERELEASE_PYTHONS flag. It's time to build and upload these wheels to PyPI! This release includes CPython 3.11.0rc1, which is guaranteed to be ABI compatible with the final release. (#1226)
- ⚠️ Removed support for running cibuildwheel in Python 3.6. Python 3.6 is EOL. However, cibuildwheel continues to build CPython 3.6 wheels for the moment. (#1175)
- ✨ Improved error messages when misspelling TOML options, suggesting close matches (#1205)
- 🛠 When running on Apple Silicon (so far, an unsupported mode of operation), cibuildwheel no longer builds universal2 wheels by default - just arm64. See [#1204](https://github.com/pypa/cibuildwheel/issues/1204) for discussion. We hope to release official support for native builds on Apple Silicon soon! (#1217)
<!-- END bin/update_readme_changelog.py -->
---
+1 -1
View File
@@ -1,3 +1,3 @@
from __future__ import annotations
__version__ = "2.11.0"
__version__ = "2.11.1"
+6 -6
View File
@@ -81,9 +81,9 @@ 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_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 = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.7/python-3.10.7-macos11.pkg" },
{ identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.7/python-3.10.7-macos11.pkg" },
{ identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.7/python-3.10.7-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_arm64", 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.8/python-3.10.8-macos11.pkg" },
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0rc2-macos11.pkg" },
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0rc2-macos11.pkg" },
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0rc2-macos11.pkg" },
@@ -102,12 +102,12 @@ python_configurations = [
{ identifier = "cp38-win_amd64", version = "3.8.10", arch = "64" },
{ identifier = "cp39-win32", version = "3.9.13", arch = "32" },
{ identifier = "cp39-win_amd64", version = "3.9.13", arch = "64" },
{ identifier = "cp310-win32", version = "3.10.7", arch = "32" },
{ identifier = "cp310-win_amd64", version = "3.10.7", arch = "64" },
{ identifier = "cp310-win32", version = "3.10.8", arch = "32" },
{ identifier = "cp310-win_amd64", version = "3.10.8", arch = "64" },
{ identifier = "cp311-win32", version = "3.11.0-rc2", arch = "32" },
{ identifier = "cp311-win_amd64", version = "3.11.0-rc2", arch = "64" },
{ identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" },
{ identifier = "cp310-win_arm64", version = "3.10.7", arch = "ARM64" },
{ identifier = "cp310-win_arm64", version = "3.10.8", arch = "ARM64" },
{ identifier = "cp311-win_arm64", version = "3.11.0-rc2", 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 = "pp38-win_amd64", version = "3.8", arch = "64", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.9-win64.zip" },
+29 -29
View File
@@ -1,49 +1,49 @@
[x86_64]
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-10-09-d8a0859
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-10-11-c03643c
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-10-09-941e8b2
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-10-12-b8b6ebc
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-10-12-b8b6ebc
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-10-12-b8b6ebc
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-10-12-b8b6ebc
[i686]
manylinux1 = quay.io/pypa/manylinux1_i686:2022-10-09-d8a0859
manylinux1 = quay.io/pypa/manylinux1_i686:2022-10-11-c03643c
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-10-09-941e8b2
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-10-12-b8b6ebc
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-10-12-b8b6ebc
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-10-12-b8b6ebc
[pypy_x86_64]
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-10-12-b8b6ebc
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-10-12-b8b6ebc
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2022-10-12-b8b6ebc
[pypy_i686]
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-10-12-b8b6ebc
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-10-12-b8b6ebc
[aarch64]
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-10-09-941e8b2
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-10-12-00e3958
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-10-12-00e3958
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-10-12-00e3958
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-10-12-00e3958
[ppc64le]
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2022-10-09-941e8b2
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-10-12-00e3958
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-10-12-00e3958
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2022-10-12-00e3958
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-10-12-00e3958
[s390x]
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2022-10-09-941e8b2
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-10-12-00e3958
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-10-12-00e3958
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2022-10-12-00e3958
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-10-12-4e18a23
[pypy_aarch64]
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-10-09-941e8b2
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-10-09-941e8b2
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-10-09-941e8b2
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-10-12-00e3958
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-10-12-00e3958
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2022-10-12-00e3958
+6
View File
@@ -4,6 +4,12 @@ title: Changelog
# Changelog
### v2.11.1
_13 October 2022_
- 🛠 Updates to the latest manylinux images, and updates CPython 3.10 to 3.10.8.
### v2.11.0
_13 October 2022_
+3 -3
View File
@@ -143,7 +143,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:
```yaml
uses: pypa/cibuildwheel@v2.11.0
uses: pypa/cibuildwheel@v2.11.1
```
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 +165,7 @@ The second option, and the only one that supports other CI systems, is using a `
```bash
# requirements-cibw.txt
cibuildwheel==2.11.0
cibuildwheel==2.11.1
```
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 +309,7 @@ Solutions to this vary, but the simplest is to use pipx:
# most runners have pipx preinstalled, but in case you don't
python3 -m pip install pipx
pipx run cibuildwheel==2.11.0 --output-dir wheelhouse
pipx run cibuildwheel==2.11.1 --output-dir wheelhouse
pipx run twine upload wheelhouse/*.whl
```
+2 -2
View File
@@ -184,7 +184,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/checkout@v3
- name: Build wheels
run: pipx run cibuildwheel==2.11.0
run: pipx run cibuildwheel==2.11.1
- uses: actions/upload-artifact@v3
with:
@@ -219,7 +219,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.11.0
run: python -m pip install cibuildwheel==2.11.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
+117 -114
View File
@@ -37,7 +37,7 @@ title: Working examples
| [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 |
| [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][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python bindings for zeromq, the networking library. Uses Cython and CFFI. |
| [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. |
| [Confluent client for Kafka][] | ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | setup in `tools/wheels/build-wheels.bat` |
| [Implicit][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes GPU support for linux wheels |
@@ -51,14 +51,14 @@ title: Working examples
| [h5py][] | ![azurepipelines icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format. |
| [Wrapt][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python module for decorators, wrappers and monkey patching. |
| [PyAV][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Pythonic bindings for FFmpeg's libraries. |
| [SimpleJSON][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | simplejson is a simple, fast, extensible JSON encoder/decoder for Python |
| [pikepdf][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python library for reading and writing PDF, powered by qpdf |
| [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 |
| [OpenColorIO][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A color management framework for visual effects and animation. |
| [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 |
| [envd][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | 🏕️ Development environment for AI/ML, based on buildkit |
| [envd][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | 🏕️ Development environment for AI/ML, based on docker |
| [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 |
| [DeepForest][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | An Efficient, Scalable and Optimized Python Framework for Deep Forest (2021.2.1) |
@@ -79,16 +79,16 @@ title: Working examples
| [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. |
| [cyvcf2][] | ![github icon][] | ![apple icon][] ![linux icon][] | cython + htslib == fast VCF and BCF processing |
| [matrixprofile][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python 3 library making time series data mining tasks, utilizing matrix profile algorithms, accessible to everyone. |
| [abess][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A fast best-subset selection library. It uses cibuildwheel to build a large project with C++ extensions. |
| [matrixprofile][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A Python 3 library making time series data mining tasks, utilizing matrix profile algorithms, accessible to everyone. |
| [jq.py][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Python bindings for jq |
| [iminuit][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Jupyter-friendly Python interface for C++ MINUIT2 |
| [Tokenizer][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Fast and customizable text tokenization library with BPE and SentencePiece support |
| [PyGLM][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Fast OpenGL Mathematics (GLM) for Python |
| [mosec][] | ![github icon][] | ![linux icon][] ![apple icon][] | A high-performance serving framework for ML models, offers dynamic batching and multi-stage pipeline to fully exploit your compute machine |
| [bx-python][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | A library that includes Cython extensions. |
| [boost-histogram][] | ![github icon][] ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Supports full range of wheels, including PyPy and alternate archs. |
| [mosec][] | ![github icon][] | ![linux icon][] ![apple icon][] | A high-performance serving framework for ML models, offers dynamic batching and multi-stage pipeline to fully exploit your compute machine |
| [TgCrypto][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes a Windows Travis build. |
| [boost-histogram][] | ![github icon][] ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Supports full range of wheels, including PyPy and alternate archs. |
| [iDynTree][] | ![github icon][] | ![linux icon][] | Uses manylinux_2_24 |
| [Python-WebRTC][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | a Python extension that provides bindings to WebRTC M92 |
| [pybase64][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Fast Base64 encoding/decoding in Python |
@@ -96,8 +96,8 @@ title: Working examples
| [fathon][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | python package for DFA (Detrended Fluctuation Analysis) and related algorithms |
| [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. |
| [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. |
| [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. |
| [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. |
| [power-grid-model][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python/C++ library for distribution power system analysis |
| [cf-units][] | ![github icon][] | ![apple icon][] ![linux icon][] | Units of measure as required by the Climate and Forecast (CF) Metadata Conventions |
| [clang-format][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Scikit-build wrapper around LLVM's CMake, all platforms, generic wheels. |
@@ -109,8 +109,9 @@ title: Working examples
| [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 |
| [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. |
| [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. |
| [xmlstarlet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python 3.6+ CFFI bindings with true MSVC build. |
| [pybind11 cross build example][] | ![github icon][] ![gitlab icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Same as pybind11 cmake_example but used to demo Linux ARM + Windows + macOS builds on GitLab |
[scikit-learn]: https://github.com/scikit-learn/scikit-learn
[NumPy]: https://github.com/numpy/numpy
@@ -155,8 +156,8 @@ title: Working examples
[h5py]: https://github.com/h5py/h5py
[Wrapt]: https://github.com/GrahamDumpleton/wrapt
[PyAV]: https://github.com/PyAV-Org/PyAV
[SimpleJSON]: https://github.com/simplejson/simplejson
[pikepdf]: https://github.com/pikepdf/pikepdf
[SimpleJSON]: https://github.com/simplejson/simplejson
[Line Profiler]: https://github.com/pyutils/line_profiler
[OpenColorIO]: https://github.com/AcademySoftwareFoundation/OpenColorIO
[PyTables]: https://github.com/PyTables/PyTables
@@ -183,16 +184,16 @@ title: Working examples
[time-machine]: https://github.com/adamchainz/time-machine
[sourmash]: https://github.com/dib-lab/sourmash
[cyvcf2]: https://github.com/brentp/cyvcf2
[matrixprofile]: https://github.com/matrix-profile-foundation/matrixprofile
[abess]: https://github.com/abess-team/abess
[matrixprofile]: https://github.com/matrix-profile-foundation/matrixprofile
[jq.py]: https://github.com/mwilliamson/jq.py
[iminuit]: https://github.com/scikit-hep/iminuit
[Tokenizer]: https://github.com/OpenNMT/Tokenizer
[PyGLM]: https://github.com/Zuzu-Typ/PyGLM
[mosec]: https://github.com/mosecorg/mosec
[bx-python]: https://github.com/bxlab/bx-python
[boost-histogram]: https://github.com/scikit-hep/boost-histogram
[mosec]: https://github.com/mosecorg/mosec
[TgCrypto]: https://github.com/pyrogram/tgcrypto
[boost-histogram]: https://github.com/scikit-hep/boost-histogram
[iDynTree]: https://github.com/robotology/idyntree
[Python-WebRTC]: https://github.com/MarshalX/python-webrtc
[pybase64]: https://github.com/mayeut/pybase64
@@ -200,8 +201,8 @@ title: Working examples
[fathon]: https://github.com/stfbnc/fathon
[etebase-py]: https://github.com/etesync/etebase-py
[polaroid]: https://github.com/daggy1234/polaroid
[Imagecodecs (fork)]: https://github.com/czaki/imagecodecs_build
[pillow-heif]: https://github.com/bigcat88/pillow_heif
[Imagecodecs (fork)]: https://github.com/czaki/imagecodecs_build
[power-grid-model]: https://github.com/alliander-opensource/power-grid-model
[cf-units]: https://github.com/SciTools/cf-units
[clang-format]: https://github.com/ssciwr/clang-format-wheel
@@ -213,8 +214,9 @@ title: Working examples
[CorrectionLib]: https://github.com/cms-nanoAOD/correctionlib
[pyinstrument_cext]: https://github.com/joerick/pyinstrument_cext
[SiPM]: https://github.com/EdoPro98/SimSiPM
[xmlstarlet]: https://github.com/dimitern/xmlstarlet
[ril]: https://github.com/Cryptex-github/ril-py
[xmlstarlet]: https://github.com/dimitern/xmlstarlet
[pybind11 cross build example]: https://github.com/wbarnha/pybind_cmake_example_crossbuild
[appveyor icon]: data/readme_icons/appveyor.svg
[github icon]: data/readme_icons/github.svg
@@ -227,109 +229,110 @@ title: Working examples
[apple icon]: data/readme_icons/apple.svg
[linux icon]: data/readme_icons/linux.svg
<!-- scikit-learn: 51616, last pushed 0 days ago -->
<!-- NumPy: 21640, last pushed 0 days ago -->
<!-- Tornado: 20782, last pushed 2 days ago -->
<!-- pytorch-fairseq: 19374, last pushed 0 days ago -->
<!-- Matplotlib: 16230, last pushed 0 days ago -->
<!-- NCNN: 15677, last pushed 0 days ago -->
<!-- Kivy: 15103, last pushed 1 days ago -->
<!-- Prophet: 14975, last pushed 18 days ago -->
<!-- MyPy: 13907, last pushed 0 days ago -->
<!-- pydantic: 11233, last pushed 2 days ago -->
<!-- MemRay: 9338, last pushed 5 days ago -->
<!-- uvloop: 8927, last pushed 8 days ago -->
<!-- psutil: 8752, last pushed 1 days ago -->
<!-- vaex: 7335, last pushed 2 days ago -->
<!-- Google Benchmark: 6899, last pushed 3 days ago -->
<!-- duckdb: 6753, last pushed 0 days ago -->
<!-- Apache Beam: 5927, last pushed 0 days ago -->
<!-- asyncpg: 5661, last pushed 5 days ago -->
<!-- PyGame: 5272, last pushed 0 days ago -->
<!-- cmake: 5138, last pushed 0 days ago -->
<!-- scikit-image: 5073, last pushed 0 days ago -->
<!-- twisted-iocpsupport: 4778, last pushed 0 days ago -->
<!-- PyOxidizer: 4339, last pushed 6 days ago -->
<!-- websockets: 4192, last pushed 0 days ago -->
<!-- cvxpy: 4115, last pushed 0 days ago -->
<!-- Triton: 4085, last pushed 0 days ago -->
<!-- UltraJSON: 3863, last pushed 5 days ago -->
<!-- River: 3723, last pushed 1 days ago -->
<!-- OpenSpiel: 3334, last pushed 0 days ago -->
<!-- pyzmq: 3173, last pushed 6 days ago -->
<!-- aiortc: 3089, last pushed 11 days ago -->
<!-- Confluent client for Kafka: 2976, last pushed 4 days ago -->
<!-- Implicit: 2963, last pushed 5 days ago -->
<!-- vispy: 2941, last pushed 1 days ago -->
<!-- tinyobjloader: 2666, last pushed 0 days ago -->
<!-- Dependency Injector: 2411, last pushed 31 days ago -->
<!-- coverage.py: 2222, last pushed 0 days ago -->
<!-- PyCryptodome: 2143, last pushed 9 days ago -->
<!-- PyYAML: 1951, last pushed 8 days ago -->
<!-- numexpr: 1822, last pushed 34 days ago -->
<!-- h5py: 1789, last pushed 8 days ago -->
<!-- Wrapt: 1764, last pushed 46 days ago -->
<!-- PyAV: 1677, last pushed 17 days ago -->
<!-- SimpleJSON: 1525, last pushed 100 days ago -->
<!-- pikepdf: 1522, last pushed 5 days ago -->
<!-- Line Profiler: 1405, last pushed 6 days ago -->
<!-- OpenColorIO: 1374, last pushed 3 days ago -->
<!-- PyTables: 1151, last pushed 3 days ago -->
<!-- scikit-learn: 51667, last pushed 0 days ago -->
<!-- NumPy: 21675, last pushed 0 days ago -->
<!-- Tornado: 20788, last pushed 5 days ago -->
<!-- pytorch-fairseq: 19415, last pushed 0 days ago -->
<!-- Matplotlib: 16245, last pushed 0 days ago -->
<!-- NCNN: 15703, last pushed 0 days ago -->
<!-- Kivy: 15109, last pushed 5 days ago -->
<!-- Prophet: 15003, last pushed 21 days ago -->
<!-- MyPy: 13932, last pushed 0 days ago -->
<!-- pydantic: 11264, last pushed 0 days ago -->
<!-- MemRay: 9389, last pushed 0 days ago -->
<!-- uvloop: 8937, last pushed 11 days ago -->
<!-- psutil: 8761, last pushed 1 days ago -->
<!-- vaex: 7342, last pushed 0 days ago -->
<!-- Google Benchmark: 6907, last pushed 0 days ago -->
<!-- duckdb: 6795, last pushed 0 days ago -->
<!-- Apache Beam: 5939, last pushed 0 days ago -->
<!-- asyncpg: 5667, last pushed 1 days ago -->
<!-- PyGame: 5282, last pushed 0 days ago -->
<!-- cmake: 5149, last pushed 0 days ago -->
<!-- scikit-image: 5080, last pushed 0 days ago -->
<!-- twisted-iocpsupport: 4783, last pushed 0 days ago -->
<!-- PyOxidizer: 4343, last pushed 9 days ago -->
<!-- websockets: 4200, last pushed 3 days ago -->
<!-- cvxpy: 4126, last pushed 0 days ago -->
<!-- Triton: 4098, last pushed 0 days ago -->
<!-- UltraJSON: 3863, last pushed 1 days ago -->
<!-- River: 3733, last pushed 0 days ago -->
<!-- OpenSpiel: 3340, last pushed 0 days ago -->
<!-- pyzmq: 3175, last pushed 1 days ago -->
<!-- aiortc: 3094, last pushed 14 days ago -->
<!-- Confluent client for Kafka: 2987, last pushed 0 days ago -->
<!-- Implicit: 2966, last pushed 8 days ago -->
<!-- vispy: 2942, last pushed 4 days ago -->
<!-- tinyobjloader: 2669, last pushed 3 days ago -->
<!-- Dependency Injector: 2421, last pushed 34 days ago -->
<!-- coverage.py: 2228, last pushed 2 days ago -->
<!-- PyCryptodome: 2147, last pushed 12 days ago -->
<!-- PyYAML: 1953, last pushed 11 days ago -->
<!-- numexpr: 1823, last pushed 37 days ago -->
<!-- h5py: 1789, last pushed 2 days ago -->
<!-- Wrapt: 1767, last pushed 49 days ago -->
<!-- PyAV: 1682, last pushed 20 days ago -->
<!-- pikepdf: 1526, last pushed 8 days ago -->
<!-- SimpleJSON: 1526, last pushed 103 days ago -->
<!-- Line Profiler: 1412, last pushed 9 days ago -->
<!-- OpenColorIO: 1375, last pushed 0 days ago -->
<!-- PyTables: 1152, last pushed 1 days ago -->
<!-- OpenTimelineIO: 1105, last pushed 0 days ago -->
<!-- aioquic: 1084, last pushed 8 days ago -->
<!-- envd: 1068, last pushed 0 days ago -->
<!-- ruptures: 1055, last pushed 2 days ago -->
<!-- Psycopg 3: 801, last pushed 3 days ago -->
<!-- DeepForest: 783, last pushed 9 days ago -->
<!-- google neuroglancer: 763, last pushed 2 days ago -->
<!-- Parselmouth: 713, last pushed 4 days ago -->
<!-- AutoPy: 678, last pushed 19 days ago -->
<!-- H3-py: 566, last pushed 0 days ago -->
<!-- Rtree: 504, last pushed 14 days ago -->
<!-- markupsafe: 497, last pushed 6 days ago -->
<!-- python-rapidjson: 460, last pushed 81 days ago -->
<!-- pybind11 cmake_example: 452, last pushed 6 days ago -->
<!-- python-snappy: 445, last pushed 207 days ago -->
<!-- KDEpy: 407, last pushed 7 days ago -->
<!-- tgcalls: 392, last pushed 100 days ago -->
<!-- pybind11 python_example: 366, last pushed 13 days ago -->
<!-- aioquic: 1085, last pushed 11 days ago -->
<!-- envd: 1083, last pushed 0 days ago -->
<!-- ruptures: 1058, last pushed 6 days ago -->
<!-- Psycopg 3: 803, last pushed 1 days ago -->
<!-- DeepForest: 785, last pushed 12 days ago -->
<!-- google neuroglancer: 764, last pushed 1 days ago -->
<!-- Parselmouth: 716, last pushed 2 days ago -->
<!-- AutoPy: 678, last pushed 22 days ago -->
<!-- H3-py: 567, last pushed 3 days ago -->
<!-- Rtree: 504, last pushed 1 days ago -->
<!-- markupsafe: 497, last pushed 9 days ago -->
<!-- python-rapidjson: 460, last pushed 85 days ago -->
<!-- pybind11 cmake_example: 455, last pushed 9 days ago -->
<!-- python-snappy: 445, last pushed 210 days ago -->
<!-- KDEpy: 412, last pushed 10 days ago -->
<!-- tgcalls: 393, last pushed 103 days ago -->
<!-- pybind11 python_example: 366, last pushed 16 days ago -->
<!-- dd-trace-py: 363, last pushed 0 days ago -->
<!-- CTranslate2: 344, last pushed 6 days ago -->
<!-- CTranslate2: 346, last pushed 9 days ago -->
<!-- time-machine: 339, last pushed 1 days ago -->
<!-- sourmash: 325, last pushed 3 days ago -->
<!-- cyvcf2: 305, last pushed 11 days ago -->
<!-- matrixprofile: 289, last pushed 3 days ago -->
<!-- abess: 288, last pushed 28 days ago -->
<!-- jq.py: 233, last pushed 20 days ago -->
<!-- iminuit: 213, last pushed 7 days ago -->
<!-- Tokenizer: 191, last pushed 26 days ago -->
<!-- PyGLM: 151, last pushed 195 days ago -->
<!-- mosec: 120, last pushed 1 days ago -->
<!-- bx-python: 119, last pushed 42 days ago -->
<!-- boost-histogram: 116, last pushed 3 days ago -->
<!-- TgCrypto: 113, last pushed 219 days ago -->
<!-- iDynTree: 109, last pushed 24 days ago -->
<!-- Python-WebRTC: 95, last pushed 213 days ago -->
<!-- pybase64: 89, last pushed 3 days ago -->
<!-- Arbor: 81, last pushed 3 days ago -->
<!-- fathon: 72, last pushed 129 days ago -->
<!-- etebase-py: 58, last pushed 95 days ago -->
<!-- polaroid: 56, last pushed 151 days ago -->
<!-- Imagecodecs (fork): 50, last pushed 13 days ago -->
<!-- pillow-heif: 49, last pushed 5 days ago -->
<!-- power-grid-model: 49, last pushed 2 days ago -->
<!-- cf-units: 49, last pushed 0 days ago -->
<!-- clang-format: 44, last pushed 8 days ago -->
<!-- numpythia: 35, last pushed 8 days ago -->
<!-- pybind11 scikit_build_example: 34, last pushed 13 days ago -->
<!-- pyjet: 33, last pushed 8 days ago -->
<!-- ninja: 26, last pushed 11 days ago -->
<!-- GSD: 19, last pushed 6 days ago -->
<!-- CorrectionLib: 11, last pushed 3 days ago -->
<!-- pyinstrument_cext: 10, last pushed 366 days ago -->
<!-- SiPM: 10, last pushed 130 days ago -->
<!-- xmlstarlet: 8, last pushed 6 days ago -->
<!-- ril: 8, last pushed 26 days ago -->
<!-- sourmash: 325, last pushed 2 days ago -->
<!-- cyvcf2: 306, last pushed 14 days ago -->
<!-- abess: 289, last pushed 31 days ago -->
<!-- matrixprofile: 289, last pushed 6 days ago -->
<!-- jq.py: 234, last pushed 23 days ago -->
<!-- iminuit: 213, last pushed 10 days ago -->
<!-- Tokenizer: 192, last pushed 30 days ago -->
<!-- PyGLM: 151, last pushed 198 days ago -->
<!-- bx-python: 120, last pushed 45 days ago -->
<!-- mosec: 120, last pushed 4 days ago -->
<!-- TgCrypto: 118, last pushed 1 days ago -->
<!-- boost-histogram: 116, last pushed 0 days ago -->
<!-- iDynTree: 109, last pushed 2 days ago -->
<!-- Python-WebRTC: 95, last pushed 216 days ago -->
<!-- pybase64: 89, last pushed 0 days ago -->
<!-- Arbor: 82, last pushed 0 days ago -->
<!-- fathon: 71, last pushed 132 days ago -->
<!-- etebase-py: 59, last pushed 98 days ago -->
<!-- polaroid: 56, last pushed 154 days ago -->
<!-- pillow-heif: 51, last pushed 1 days ago -->
<!-- Imagecodecs (fork): 50, last pushed 16 days ago -->
<!-- power-grid-model: 49, last pushed 0 days ago -->
<!-- cf-units: 49, last pushed 1 days ago -->
<!-- clang-format: 44, last pushed 11 days ago -->
<!-- numpythia: 35, last pushed 12 days ago -->
<!-- pybind11 scikit_build_example: 34, last pushed 2 days ago -->
<!-- pyjet: 33, last pushed 12 days ago -->
<!-- ninja: 26, last pushed 0 days ago -->
<!-- GSD: 19, last pushed 9 days ago -->
<!-- CorrectionLib: 11, last pushed 6 days ago -->
<!-- pyinstrument_cext: 10, last pushed 369 days ago -->
<!-- SiPM: 10, last pushed 133 days ago -->
<!-- ril: 9, last pushed 29 days ago -->
<!-- xmlstarlet: 8, last pushed 9 days ago -->
<!-- pybind11 cross build example: 0, last pushed 6 days ago -->
<!-- END bin/projects.py -->
+1 -1
View File
@@ -12,7 +12,7 @@ stack: python 3.7
init:
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
install: python -m pip install cibuildwheel==2.11.0
install: python -m pip install cibuildwheel==2.11.1
build_script: python -m cibuildwheel --output-dir wheelhouse
+3 -3
View File
@@ -6,7 +6,7 @@ jobs:
- bash: |
set -o errexit
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==2.11.0
pip3 install cibuildwheel==2.11.1
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
@@ -20,7 +20,7 @@ jobs:
- bash: |
set -o errexit
python3 -m pip install --upgrade pip
python3 -m pip install cibuildwheel==2.11.0
python3 -m pip install cibuildwheel==2.11.1
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
@@ -34,7 +34,7 @@ jobs:
- bash: |
set -o errexit
python -m pip install --upgrade pip
pip install cibuildwheel==2.11.0
pip install cibuildwheel==2.11.1
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
+3 -3
View File
@@ -11,7 +11,7 @@ jobs:
- run:
name: Build the Linux wheels.
command: |
pip3 install --user cibuildwheel==2.11.0
pip3 install --user cibuildwheel==2.11.1
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
@@ -28,7 +28,7 @@ jobs:
- run:
name: Build the Linux aarch64 wheels.
command: |
python3 -m pip install --user cibuildwheel==2.11.0
python3 -m pip install --user cibuildwheel==2.11.1
python3 -m cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
@@ -42,7 +42,7 @@ jobs:
- run:
name: Build the OS X wheels.
command: |
pip3 install cibuildwheel==2.11.0
pip3 install cibuildwheel==2.11.1
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
+1 -1
View File
@@ -1,6 +1,6 @@
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
install_cibuildwheel_script:
- python -m pip install cibuildwheel==2.11.0
- python -m pip install cibuildwheel==2.11.1
run_cibuildwheel_script:
- cibuildwheel
wheels_artifacts:
+1 -1
View File
@@ -1,6 +1,6 @@
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
install_cibuildwheel_script:
- python -m pip install cibuildwheel==2.11.0
- python -m pip install cibuildwheel==2.11.1
run_cibuildwheel_script:
- cibuildwheel
wheels_artifacts:
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/cibuildwheel@v2.11.0
uses: pypa/cibuildwheel@v2.11.1
env:
CIBW_ARCHS_MACOS: x86_64 arm64
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/cibuildwheel@v2.11.0
uses: pypa/cibuildwheel@v2.11.1
- uses: actions/upload-artifact@v3
with:
+1 -1
View File
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/cibuildwheel@v2.11.0
uses: pypa/cibuildwheel@v2.11.1
# env:
# CIBW_SOME_OPTION: value
# ...
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.11.0
uses: pypa/cibuildwheel@v2.11.1
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
+2 -2
View File
@@ -12,7 +12,7 @@ linux:
DOCKER_TLS_CERTDIR: ""
script:
- curl -sSL https://get.docker.com/ | sh
- python -m pip install cibuildwheel==2.11.0
- python -m pip install cibuildwheel==2.11.1
- cibuildwheel --output-dir wheelhouse
artifacts:
paths:
@@ -23,7 +23,7 @@ windows:
before_script:
- choco install python -y --version 3.8.6
- choco install git.install -y
- py -m pip install cibuildwheel==2.11.0
- py -m pip install cibuildwheel==2.11.1
script:
- py -m cibuildwheel --output-dir wheelhouse --platform windows
artifacts:
+1 -1
View File
@@ -14,7 +14,7 @@ linux:
- curl -sSL https://get.docker.com/ | sh
# Warning: This is extremely slow, be careful with how many wheels you build
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- python -m pip install cibuildwheel==2.11.0
- python -m pip install cibuildwheel==2.11.1
# Assuming your CI runner's default architecture is x86_64...
- cibuildwheel --output-dir wheelhouse --platform linux --archs aarch64
artifacts:
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
install:
- python3 -m pip install cibuildwheel==2.11.0
- python3 -m pip install cibuildwheel==2.11.1
script:
# build the wheels, put them into './dist'
+1 -1
View File
@@ -26,7 +26,7 @@ jobs:
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
install:
- python3 -m pip install cibuildwheel==2.11.0
- python3 -m pip install cibuildwheel==2.11.1
script:
# build the wheels, put them into './wheelhouse'
+2 -2
View File
@@ -54,7 +54,7 @@ jobs:
- stage: deploy
name: Build and deploy Linux wheels
services: docker
install: python3 -m pip install cibuildwheel==2.11.0 twine
install: python3 -m pip install cibuildwheel==2.11.1 twine
script: python3 -m cibuildwheel --output-dir wheelhouse
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
# Deploy on windows
@@ -62,7 +62,7 @@ jobs:
name: Build and deploy Windows wheels
os: windows
language: shell
install: python3 -m pip install cibuildwheel==2.11.0 twine
install: python3 -m pip install cibuildwheel==2.11.1 twine
script: python3 -m cibuildwheel --output-dir wheelhouse
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
+1 -1
View File
@@ -1,6 +1,6 @@
[metadata]
name = cibuildwheel
version = 2.11.0
version = 2.11.1
description = Build Python wheels on CI with minimal configuration.
long_description = file: README.md
long_description_content_type = text/markdown