Compare commits

...
5 Commits
Author SHA1 Message Date
Joe Rickerby aa753429b2 Bump version: v2.6.1 2022-06-07 09:14:16 +01:00
dependabot[bot]anddependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 45227e53e7 chore(deps): bump pre-commit/action from 2.0.3 to 3.0.0 (#1127)
Bumps [pre-commit/action](https://github.com/pre-commit/action) from 2.0.3 to 3.0.0.
- [Release notes](https://github.com/pre-commit/action/releases)
- [Commits](https://github.com/pre-commit/action/compare/v2.0.3...v3.0.0)

---
updated-dependencies:
- dependency-name: pre-commit/action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-06 18:56:34 +02:00
pre-commit-ci[bot]andpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 0be10361af [pre-commit.ci] pre-commit autoupdate (#1120)
updates:
- [github.com/pre-commit/mirrors-mypy: v0.950 → v0.960](https://github.com/pre-commit/mirrors-mypy/compare/v0.950...v0.960)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-06-06 18:55:06 +02:00
cibuildwheel-bot[bot]andcibuildwheel-bot[bot] <83877280+cibuildwheel-bot[bot]@users.noreply.github.com> a440ab3655 [Bot] Update dependencies (#1119)
Update dependencies

Co-authored-by: cibuildwheel-bot[bot] <83877280+cibuildwheel-bot[bot]@users.noreply.github.com>
2022-06-06 15:53:13 +02:00
Matthieu Darbois c5c1766614 ci: disable travis-ci output timeout (#1123) 2022-06-04 20:03:02 +02:00
29 changed files with 202 additions and 196 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v2.0.3
- uses: pre-commit/action@v3.0.0
- name: Check manifest
run: pipx run nox -s check_manifest
- name: PyLint checks
+1 -1
View File
@@ -49,7 +49,7 @@ repos:
- id: setup-cfg-fmt
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.950
rev: v0.960
hooks:
- id: mypy
name: mypy 3.6 on cibuildwheel/
+8 -1
View File
@@ -52,4 +52,11 @@ install:
- $PYTHON -m pip install -U pip
- $PYTHON -m pip install -e ".[dev]" pytest-custom-exit-code
script: $PYTHON ./bin/run_tests.py
script: |
# travis_wait disable the output while waiting
# use the same kind of tricks as in multibuild
(while true; do echo "travis_keep_alive"; sleep 300; done) &
SPINNER_PID=$!
disown
$PYTHON ./bin/run_tests.py
kill -9 ${SPINNER_PID}
+11 -18
View File
@@ -89,7 +89,7 @@ jobs:
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.6.0
run: python -m pip install cibuildwheel==2.6.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
@@ -152,23 +152,23 @@ Here are some repos that use cibuildwheel.
| Name | CI | OS | Notes |
|-----------------------------------|----|----|:------|
| [scikit-learn][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The machine learning library. A complex but clean config using many of cibuildwheel's features to build a large project with Cython and C++ extensions. |
| [Tornado][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. |
| [NumPy][] | ![github icon][] ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The fundamental package for scientific computing with Python. |
| [Tornado][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. |
| [pytorch-fairseq][] | ![github icon][] | ![apple icon][] ![linux icon][] | Facebook AI Research Sequence-to-Sequence Toolkit written in Python. |
| [Matplotlib][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The venerable Matplotlib, a Python library with C++ portions |
| [Kivy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS |
| [NCNN][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | ncnn is a high-performance neural network inference framework optimized for the mobile platform |
| [Kivy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS |
| [Prophet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. |
| [MyPy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | The compiled version of MyPy using MyPyC. |
| [pydantic][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Data parsing and validation using Python type hints |
[scikit-learn]: https://github.com/scikit-learn/scikit-learn
[Tornado]: https://github.com/tornadoweb/tornado
[NumPy]: https://github.com/numpy/numpy
[Tornado]: https://github.com/tornadoweb/tornado
[pytorch-fairseq]: https://github.com/pytorch/fairseq
[Matplotlib]: https://github.com/matplotlib/matplotlib
[Kivy]: https://github.com/kivy/kivy
[NCNN]: https://github.com/Tencent/ncnn
[Kivy]: https://github.com/kivy/kivy
[Prophet]: https://github.com/facebook/prophet
[MyPy]: https://github.com/mypyc/mypy_mypyc-wheels
[pydantic]: https://github.com/samuelcolvin/pydantic
@@ -203,6 +203,12 @@ Changelog
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
### v2.6.1
_7 June 2022_
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
### v2.6.0
_25 May 2022_
@@ -240,19 +246,6 @@ _14 December 2021_
- 🐛 Setting pip options like `PIP_USE_DEPRECATED` in `CIBW_ENVIRONMENT` no longer adversely affects cibuildwheel's ability to set up a Python environment (#956)
- 📚 Docs fixes and improvements
### v2.3.0
_26 November 2021_
- 📈 cibuildwheel now defaults to manylinux2014 image for linux builds, rather than manylinux2010. If you want to stick with manylinux2010, it's simple to set this using [the image options](https://cibuildwheel.readthedocs.io/en/stable/options/#linux-image). (#926)
- ✨ You can now pass environment variables from the host machine into the Docker container during a Linux build. Check out [the docs for `CIBW_ENVIRONMENT_PASS_LINUX `](https://cibuildwheel.readthedocs.io/en/latest/options/#environment-pass) for the details. (#914)
- ✨ Added support for building PyPy 3.8 wheels. (#881)
- ✨ Added support for building Windows arm64 CPython wheels on a Windows arm64 runner. We can't test this in CI yet, so for now, this is experimental. (#920)
- 📚 Improved the deployment documentation (#911)
- 🛠 Changed the escaping behaviour inside cibuildwheel's option placeholders e.g. `{project}` in `before_build` or `{dest_dir}` in `repair_wheel_command`. This allows bash syntax like `${SOME_VAR}` to passthrough without being interpreted as a placeholder by cibuildwheel. See [this section](https://cibuildwheel.readthedocs.io/en/stable/options/#placeholders) in the docs for more info. (#889)
- 🛠 Pip updated to 21.3, meaning it now defaults to in-tree builds again. If this causes an issue with your project, setting environment variable `PIP_USE_DEPRECATED=out-of-tree-build` is available as a temporary flag to restore the old behaviour. However, be aware that this flag will probably be removed soon. (#881)
- 🐛 You can now access the current Python interpreter using `python3` within a build on Windows (#917)
<!-- END bin/update_readme_changelog.py -->
---
+1 -1
View File
@@ -1 +1 @@
__version__ = "2.6.0"
__version__ = "2.6.1"
+6 -6
View File
@@ -84,9 +84,9 @@ python_configurations = [
{ identifier = "cp310-macosx_x86_64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.4/python-3.10.4-macos11.pkg" },
{ identifier = "cp310-macosx_arm64", version = "3.10", url = "https://www.python.org/ftp/python/3.10.4/python-3.10.4-macos11.pkg" },
{ identifier = "cp310-macosx_universal2", version = "3.10", url = "https://www.python.org/ftp/python/3.10.4/python-3.10.4-macos11.pkg" },
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b1-macos11.pkg" },
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b1-macos11.pkg" },
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b1-macos11.pkg" },
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b3-macos11.pkg" },
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b3-macos11.pkg" },
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.0/python-3.11.0b3-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 = "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" },
@@ -104,11 +104,11 @@ python_configurations = [
{ identifier = "cp39-win_amd64", version = "3.9.13", arch = "64" },
{ identifier = "cp310-win32", version = "3.10.4", arch = "32" },
{ identifier = "cp310-win_amd64", version = "3.10.4", arch = "64" },
{ identifier = "cp311-win32", version = "3.11.0-b1", arch = "32" },
{ identifier = "cp311-win_amd64", version = "3.11.0-b1", arch = "64" },
{ identifier = "cp311-win32", version = "3.11.0-b3", arch = "32" },
{ identifier = "cp311-win_amd64", version = "3.11.0-b3", arch = "64" },
{ identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" },
{ identifier = "cp310-win_arm64", version = "3.10.4", arch = "ARM64" },
{ identifier = "cp311-win_arm64", version = "3.11.0-b1", arch = "ARM64" },
{ identifier = "cp311-win_arm64", version = "3.11.0-b3", 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" },
{ identifier = "pp39-win_amd64", version = "3.9", arch = "64", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.9-win64.zip" },
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
platformdirs==2.5.2
# via virtualenv
@@ -24,7 +24,7 @@ wheel==0.37.1
# delocate
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
platformdirs==2.5.2
# via virtualenv
@@ -24,7 +24,7 @@ wheel==0.37.1
# delocate
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
importlib-metadata==4.11.4
# via virtualenv
@@ -30,7 +30,7 @@ zipp==3.8.0
# via importlib-metadata
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
platformdirs==2.5.2
# via virtualenv
@@ -24,7 +24,7 @@ wheel==0.37.1
# delocate
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
platformdirs==2.5.2
# via virtualenv
@@ -24,7 +24,7 @@ wheel==0.37.1
# delocate
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
+2 -2
View File
@@ -8,7 +8,7 @@ delocate==0.10.2
# via -r cibuildwheel/resources/constraints.in
distlib==0.3.4
# via virtualenv
filelock==3.7.0
filelock==3.7.1
# via virtualenv
platformdirs==2.5.2
# via virtualenv
@@ -24,7 +24,7 @@ wheel==0.37.1
# delocate
# The following packages are considered to be unsafe in a requirements file:
pip==22.1.1
pip==22.1.2
# via -r cibuildwheel/resources/constraints.in
setuptools==62.3.2
# via -r cibuildwheel/resources/constraints.in
+27 -27
View File
@@ -1,43 +1,43 @@
[x86_64]
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-05-22-74adb27
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-05-22-fbe07ea
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-05-22-fbe07ea
manylinux1 = quay.io/pypa/manylinux1_x86_64:2022-06-05-89b8e6d
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-06-05-61145a4
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-06-05-61145a4
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2022-06-05-61145a4
[i686]
manylinux1 = quay.io/pypa/manylinux1_i686:2022-05-22-74adb27
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-05-22-fbe07ea
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-05-22-fbe07ea
manylinux1 = quay.io/pypa/manylinux1_i686:2022-06-05-89b8e6d
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-06-05-61145a4
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-06-05-61145a4
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2022-06-05-61145a4
[pypy_x86_64]
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-05-22-fbe07ea
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-06-05-61145a4
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-06-05-61145a4
[pypy_i686]
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-05-22-fbe07ea
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-06-05-61145a4
manylinux2014 = quay.io/pypa/manylinux2014_i686:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-06-05-61145a4
[aarch64]
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-05-22-fbe07ea
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-06-05-61145a4
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2022-06-05-61145a4
[ppc64le]
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-05-22-fbe07ea
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-06-05-61145a4
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2022-06-05-61145a4
[s390x]
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-05-22-fbe07ea
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-06-05-61145a4
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2022-06-05-61145a4
[pypy_aarch64]
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-05-22-fbe07ea
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-05-22-fbe07ea
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2022-06-05-61145a4
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-06-05-61145a4
+6
View File
@@ -2,6 +2,12 @@
title: Changelog
---
### v2.6.1
_7 June 2022_
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
### v2.6.0
_25 May 2022_
+2 -2
View File
@@ -133,7 +133,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.6.0
uses: pypa/cibuildwheel@v2.6.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.
@@ -159,7 +159,7 @@ The second option, and the only one that supports other CI systems, is using a `
```bash
# requirements-cibw.txt
cibuildwheel==2.6.0
cibuildwheel==2.6.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:
+2 -2
View File
@@ -183,7 +183,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/checkout@v2
- name: Build wheels
run: pipx run cibuildwheel==2.6.0
run: pipx run cibuildwheel==2.6.1
- uses: actions/upload-artifact@v2
with:
@@ -218,7 +218,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.6.0
run: python -m pip install cibuildwheel==2.6.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
+109 -109
View File
@@ -9,18 +9,18 @@ title: Working examples
| Name | CI | OS | Notes |
|-----------------------------------|----|----|:------|
| [scikit-learn][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The machine learning library. A complex but clean config using many of cibuildwheel's features to build a large project with Cython and C++ extensions. |
| [Tornado][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. |
| [NumPy][] | ![github icon][] ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The fundamental package for scientific computing with Python. |
| [Tornado][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. |
| [pytorch-fairseq][] | ![github icon][] | ![apple icon][] ![linux icon][] | Facebook AI Research Sequence-to-Sequence Toolkit written in Python. |
| [Matplotlib][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The venerable Matplotlib, a Python library with C++ portions |
| [Kivy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS |
| [NCNN][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | ncnn is a high-performance neural network inference framework optimized for the mobile platform |
| [Kivy][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS |
| [Prophet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. |
| [MyPy][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | The compiled version of MyPy using MyPyC. |
| [pydantic][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Data parsing and validation using Python type hints |
| [uvloop][] | ![github icon][] | ![apple icon][] ![linux icon][] | Ultra fast asyncio event loop. |
| [psutil][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Cross-platform lib for process and system monitoring in Python |
| [MemRay][] | ![github icon][] | ![linux icon][] | Memray is a memory profiler for Python |
| [psutil][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Cross-platform lib for process and system monitoring in Python |
| [vaex][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀 |
| [Google Benchmark][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | A microbenchmark support library |
| [Apache Beam][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Apache Beam is a unified programming model for Batch and Streaming data processing. |
@@ -84,8 +84,8 @@ title: Working examples
| [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 |
| [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. |
| [bx-python][] | ![travisci icon][] | ![apple icon][] ![linux icon][] | A library that includes Cython extensions. |
| [iDynTree][] | ![github icon][] | ![linux icon][] | Uses manylinux_2_24 |
| [TgCrypto][] | ![travisci icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Includes a Windows Travis build. |
| [Python-WebRTC][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | a Python extension that provides bindings to WebRTC M92 |
@@ -96,12 +96,12 @@ title: Working examples
| [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. |
| [polaroid][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Full range of wheels for setuptools rust, with auto release and PyPI deploy. |
| [clang-format][] | ![github icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Scikit-build wrapper around LLVM's CMake, all platforms, generic wheels. |
| [power-grid-model][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python/C++ library for distribution power system analysis |
| [pyjet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | The interface between FastJet and NumPy |
| [numpythia][] | ![github icon][] | ![apple icon][] ![linux icon][] | The interface between PYTHIA and NumPy |
| [power-grid-model][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python/C++ library for distribution power system analysis |
| [pybind11 scikit_build_example][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | An example combining scikit-build and pybind11 |
| [ninja][] | ![github icon][] ![travisci icon][] | ![apple icon][] ![linux icon][] ![windows icon][] | Multitagged binary builds for all supported platforms, using cibw 2 config configuration. |
| [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. |
| [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. |
| [pyinstrument_cext][] | ![travisci icon][] ![appveyor icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | A simple C extension, without external dependencies |
| [xmlstarlet][] | ![github icon][] | ![windows icon][] ![apple icon][] ![linux icon][] | Python 3.6+ CFFI bindings with true MSVC build. |
@@ -109,18 +109,18 @@ title: Working examples
| [SiPM][] | ![github icon][] | ![apple icon][] ![linux icon][] | High performance library for SiPM detectors simulation using C++17, OpenMP and AVX2 intrinsics. |
[scikit-learn]: https://github.com/scikit-learn/scikit-learn
[Tornado]: https://github.com/tornadoweb/tornado
[NumPy]: https://github.com/numpy/numpy
[Tornado]: https://github.com/tornadoweb/tornado
[pytorch-fairseq]: https://github.com/pytorch/fairseq
[Matplotlib]: https://github.com/matplotlib/matplotlib
[Kivy]: https://github.com/kivy/kivy
[NCNN]: https://github.com/Tencent/ncnn
[Kivy]: https://github.com/kivy/kivy
[Prophet]: https://github.com/facebook/prophet
[MyPy]: https://github.com/mypyc/mypy_mypyc-wheels
[pydantic]: https://github.com/samuelcolvin/pydantic
[uvloop]: https://github.com/MagicStack/uvloop
[psutil]: https://github.com/giampaolo/psutil
[MemRay]: https://github.com/bloomberg/memray
[psutil]: https://github.com/giampaolo/psutil
[vaex]: https://github.com/vaexio/vaex
[Google Benchmark]: https://github.com/google/benchmark
[Apache Beam]: https://github.com/apache/beam
@@ -184,8 +184,8 @@ title: Working examples
[iminuit]: https://github.com/scikit-hep/iminuit
[Tokenizer]: https://github.com/OpenNMT/Tokenizer
[PyGLM]: https://github.com/Zuzu-Typ/PyGLM
[bx-python]: https://github.com/bxlab/bx-python
[boost-histogram]: https://github.com/scikit-hep/boost-histogram
[bx-python]: https://github.com/bxlab/bx-python
[iDynTree]: https://github.com/robotology/idyntree
[TgCrypto]: https://github.com/pyrogram/tgcrypto
[Python-WebRTC]: https://github.com/MarshalX/python-webrtc
@@ -196,12 +196,12 @@ title: Working examples
[Imagecodecs (fork)]: https://github.com/czaki/imagecodecs_build
[polaroid]: https://github.com/daggy1234/polaroid
[clang-format]: https://github.com/ssciwr/clang-format-wheel
[power-grid-model]: https://github.com/alliander-opensource/power-grid-model
[pyjet]: https://github.com/scikit-hep/pyjet
[numpythia]: https://github.com/scikit-hep/numpythia
[power-grid-model]: https://github.com/alliander-opensource/power-grid-model
[pybind11 scikit_build_example]: https://github.com/pybind/scikit_build_example
[ninja]: https://github.com/scikit-build/ninja-python-distributions
[pillow-heif]: https://github.com/bigcat88/pillow_heif
[ninja]: https://github.com/scikit-build/ninja-python-distributions
[GSD]: https://github.com/glotzerlab/gsd
[pyinstrument_cext]: https://github.com/joerick/pyinstrument_cext
[xmlstarlet]: https://github.com/dimitern/xmlstarlet
@@ -218,105 +218,105 @@ title: Working examples
[apple icon]: data/readme_icons/apple.svg
[linux icon]: data/readme_icons/linux.svg
<!-- scikit-learn: 50139, last pushed 0 days ago -->
<!-- Tornado: 20546, last pushed 18 days ago -->
<!-- NumPy: 20488, last pushed 0 days ago -->
<!-- pytorch-fairseq: 17023, last pushed 1 days ago -->
<!-- Matplotlib: 15520, last pushed 0 days ago -->
<!-- Kivy: 14633, last pushed 5 days ago -->
<!-- NCNN: 14617, last pushed 0 days ago -->
<!-- Prophet: 14454, last pushed 0 days ago -->
<!-- MyPy: 13130, last pushed 0 days ago -->
<!-- pydantic: 9970, last pushed 1 days ago -->
<!-- uvloop: 8623, last pushed 7 days ago -->
<!-- psutil: 8395, last pushed 1 days ago -->
<!-- MemRay: 8343, last pushed 2 days ago -->
<!-- vaex: 7075, last pushed 2 days ago -->
<!-- Google Benchmark: 6476, last pushed 0 days ago -->
<!-- Apache Beam: 5517, last pushed 0 days ago -->
<!-- asyncpg: 5481, last pushed 11 days ago -->
<!-- duckdb: 5058, last pushed 0 days ago -->
<!-- scikit-image: 4909, last pushed 2 days ago -->
<!-- PyGame: 4829, last pushed 0 days ago -->
<!-- cmake: 4767, last pushed 0 days ago -->
<!-- twisted-iocpsupport: 4602, last pushed 0 days ago -->
<!-- websockets: 3939, last pushed 7 days ago -->
<!-- cvxpy: 3925, last pushed 0 days ago -->
<!-- PyOxidizer: 3749, last pushed 7 days ago -->
<!-- UltraJSON: 3688, last pushed 4 days ago -->
<!-- Triton: 3635, last pushed 0 days ago -->
<!-- River: 3372, last pushed 0 days ago -->
<!-- OpenSpiel: 3185, last pushed 1 days ago -->
<!-- pyzmq: 3084, last pushed 0 days ago -->
<!-- aiortc: 2917, last pushed 12 days ago -->
<!-- vispy: 2872, last pushed 5 days ago -->
<!-- Implicit: 2787, last pushed 5 days ago -->
<!-- Confluent client for Kafka: 2780, last pushed 2 days ago -->
<!-- tinyobjloader: 2530, last pushed 146 days ago -->
<!-- Dependency Injector: 2119, last pushed 35 days ago -->
<!-- coverage.py: 2045, last pushed 0 days ago -->
<!-- PyCryptodome: 2004, last pushed 3 days ago -->
<!-- PyYAML: 1839, last pushed 11 days ago -->
<!-- numexpr: 1754, last pushed 32 days ago -->
<!-- h5py: 1735, last pushed 0 days ago -->
<!-- Wrapt: 1678, last pushed 21 days ago -->
<!-- PyAV: 1563, last pushed 3 days ago -->
<!-- SimpleJSON: 1487, last pushed 30 days ago -->
<!-- OpenColorIO: 1311, last pushed 1 days ago -->
<!-- pikepdf: 1221, last pushed 0 days ago -->
<!-- Line Profiler: 1214, last pushed 17 days ago -->
<!-- PyTables: 1125, last pushed 33 days ago -->
<!-- OpenTimelineIO: 1055, last pushed 0 days ago -->
<!-- ruptures: 962, last pushed 5 days ago -->
<!-- aioquic: 926, last pushed 13 days ago -->
<!-- DeepForest: 758, last pushed 8 days ago -->
<!-- google neuroglancer: 734, last pushed 2 days ago -->
<!-- Psycopg 3: 676, last pushed 0 days ago -->
<!-- Parselmouth: 658, last pushed 48 days ago -->
<!-- AutoPy: 643, last pushed 148 days ago -->
<!-- H3-py: 523, last pushed 1 days ago -->
<!-- Rtree: 480, last pushed 33 days ago -->
<!-- markupsafe: 471, last pushed 21 days ago -->
<!-- python-rapidjson: 452, last pushed 75 days ago -->
<!-- python-snappy: 435, last pushed 67 days ago -->
<!-- pybind11 cmake_example: 402, last pushed 3 days ago -->
<!-- KDEpy: 373, last pushed 101 days ago -->
<!-- tgcalls: 356, last pushed 15 days ago -->
<!-- pybind11 python_example: 324, last pushed 10 days ago -->
<!-- dd-trace-py: 322, last pushed 2 days ago -->
<!-- sourmash: 305, last pushed 2 days ago -->
<!-- time-machine: 300, last pushed 1 days ago -->
<!-- cyvcf2: 297, last pushed 2 days ago -->
<!-- CTranslate2: 271, last pushed 2 days ago -->
<!-- abess: 263, last pushed 0 days ago -->
<!-- matrixprofile: 259, last pushed 331 days ago -->
<!-- jq.py: 215, last pushed 105 days ago -->
<!-- iminuit: 205, last pushed 6 days ago -->
<!-- Tokenizer: 179, last pushed 76 days ago -->
<!-- PyGLM: 139, last pushed 55 days ago -->
<!-- bx-python: 113, last pushed 137 days ago -->
<!-- boost-histogram: 113, last pushed 4 days ago -->
<!-- iDynTree: 105, last pushed 3 days ago -->
<!-- TgCrypto: 104, last pushed 79 days ago -->
<!-- Python-WebRTC: 89, last pushed 73 days ago -->
<!-- pybase64: 83, last pushed 3 days ago -->
<!-- scikit-learn: 50318, last pushed 0 days ago -->
<!-- NumPy: 20611, last pushed 0 days ago -->
<!-- Tornado: 20565, last pushed 1 days ago -->
<!-- pytorch-fairseq: 17149, last pushed 0 days ago -->
<!-- Matplotlib: 15597, last pushed 0 days ago -->
<!-- NCNN: 14686, last pushed 0 days ago -->
<!-- Kivy: 14676, last pushed 6 days ago -->
<!-- Prophet: 14519, last pushed 0 days ago -->
<!-- MyPy: 13207, last pushed 0 days ago -->
<!-- pydantic: 10083, last pushed 4 days ago -->
<!-- uvloop: 8643, last pushed 3 days ago -->
<!-- MemRay: 8533, last pushed 1 days ago -->
<!-- psutil: 8432, last pushed 1 days ago -->
<!-- vaex: 7100, last pushed 1 days ago -->
<!-- Google Benchmark: 6519, last pushed 4 days ago -->
<!-- Apache Beam: 5557, last pushed 0 days ago -->
<!-- asyncpg: 5502, last pushed 25 days ago -->
<!-- duckdb: 5216, last pushed 0 days ago -->
<!-- scikit-image: 4923, last pushed 1 days ago -->
<!-- PyGame: 4848, last pushed 0 days ago -->
<!-- cmake: 4803, last pushed 0 days ago -->
<!-- twisted-iocpsupport: 4615, last pushed 0 days ago -->
<!-- websockets: 3962, last pushed 21 days ago -->
<!-- cvxpy: 3944, last pushed 0 days ago -->
<!-- PyOxidizer: 3819, last pushed 0 days ago -->
<!-- UltraJSON: 3721, last pushed 1 days ago -->
<!-- Triton: 3654, last pushed 0 days ago -->
<!-- River: 3399, last pushed 0 days ago -->
<!-- OpenSpiel: 3202, last pushed 0 days ago -->
<!-- pyzmq: 3094, last pushed 3 days ago -->
<!-- aiortc: 2937, last pushed 10 days ago -->
<!-- vispy: 2878, last pushed 0 days ago -->
<!-- Implicit: 2798, last pushed 3 days ago -->
<!-- Confluent client for Kafka: 2797, last pushed 2 days ago -->
<!-- tinyobjloader: 2548, last pushed 160 days ago -->
<!-- Dependency Injector: 2155, last pushed 49 days ago -->
<!-- coverage.py: 2061, last pushed 0 days ago -->
<!-- PyCryptodome: 2014, last pushed 0 days ago -->
<!-- PyYAML: 1854, last pushed 25 days ago -->
<!-- numexpr: 1759, last pushed 11 days ago -->
<!-- h5py: 1740, last pushed 3 days ago -->
<!-- Wrapt: 1685, last pushed 35 days ago -->
<!-- PyAV: 1574, last pushed 17 days ago -->
<!-- SimpleJSON: 1490, last pushed 44 days ago -->
<!-- OpenColorIO: 1316, last pushed 0 days ago -->
<!-- pikepdf: 1255, last pushed 7 days ago -->
<!-- Line Profiler: 1232, last pushed 8 days ago -->
<!-- PyTables: 1128, last pushed 47 days ago -->
<!-- OpenTimelineIO: 1056, last pushed 0 days ago -->
<!-- ruptures: 969, last pushed 19 days ago -->
<!-- aioquic: 941, last pushed 27 days ago -->
<!-- DeepForest: 762, last pushed 22 days ago -->
<!-- google neuroglancer: 736, last pushed 6 days ago -->
<!-- Psycopg 3: 690, last pushed 0 days ago -->
<!-- Parselmouth: 661, last pushed 62 days ago -->
<!-- AutoPy: 648, last pushed 162 days ago -->
<!-- H3-py: 532, last pushed 0 days ago -->
<!-- Rtree: 480, last pushed 47 days ago -->
<!-- markupsafe: 473, last pushed 4 days ago -->
<!-- python-rapidjson: 454, last pushed 11 days ago -->
<!-- python-snappy: 437, last pushed 81 days ago -->
<!-- pybind11 cmake_example: 403, last pushed 2 days ago -->
<!-- KDEpy: 374, last pushed 115 days ago -->
<!-- tgcalls: 359, last pushed 1 days ago -->
<!-- pybind11 python_example: 328, last pushed 2 days ago -->
<!-- dd-trace-py: 325, last pushed 0 days ago -->
<!-- sourmash: 306, last pushed 4 days ago -->
<!-- time-machine: 303, last pushed 1 days ago -->
<!-- cyvcf2: 298, last pushed 16 days ago -->
<!-- CTranslate2: 296, last pushed 2 days ago -->
<!-- abess: 266, last pushed 5 days ago -->
<!-- matrixprofile: 264, last pushed 345 days ago -->
<!-- jq.py: 216, last pushed 119 days ago -->
<!-- iminuit: 206, last pushed 2 days ago -->
<!-- Tokenizer: 183, last pushed 90 days ago -->
<!-- PyGLM: 142, last pushed 69 days ago -->
<!-- boost-histogram: 114, last pushed 6 days ago -->
<!-- bx-python: 113, last pushed 151 days ago -->
<!-- iDynTree: 105, last pushed 4 days ago -->
<!-- TgCrypto: 104, last pushed 93 days ago -->
<!-- Python-WebRTC: 89, last pushed 87 days ago -->
<!-- pybase64: 84, last pushed 0 days ago -->
<!-- Arbor: 72, last pushed 2 days ago -->
<!-- fathon: 59, last pushed 186 days ago -->
<!-- etebase-py: 57, last pushed 146 days ago -->
<!-- Imagecodecs (fork): 43, last pushed 5 days ago -->
<!-- polaroid: 38, last pushed 11 days ago -->
<!-- clang-format: 37, last pushed 17 days ago -->
<!-- pyjet: 33, last pushed 19 days ago -->
<!-- numpythia: 33, last pushed 20 days ago -->
<!-- power-grid-model: 32, last pushed 0 days ago -->
<!-- pybind11 scikit_build_example: 25, last pushed 2 days ago -->
<!-- ninja: 24, last pushed 13 days ago -->
<!-- pillow-heif: 21, last pushed 4 days ago -->
<!-- GSD: 19, last pushed 20 days ago -->
<!-- pyinstrument_cext: 10, last pushed 226 days ago -->
<!-- fathon: 61, last pushed 3 days ago -->
<!-- etebase-py: 57, last pushed 160 days ago -->
<!-- Imagecodecs (fork): 44, last pushed 19 days ago -->
<!-- polaroid: 40, last pushed 25 days ago -->
<!-- clang-format: 37, last pushed 2 days ago -->
<!-- power-grid-model: 34, last pushed 2 days ago -->
<!-- pyjet: 33, last pushed 11 days ago -->
<!-- numpythia: 33, last pushed 10 days ago -->
<!-- pybind11 scikit_build_example: 26, last pushed 2 days ago -->
<!-- pillow-heif: 26, last pushed 3 days ago -->
<!-- ninja: 24, last pushed 0 days ago -->
<!-- GSD: 19, last pushed 4 days ago -->
<!-- pyinstrument_cext: 10, last pushed 240 days ago -->
<!-- xmlstarlet: 9, last pushed 6 days ago -->
<!-- CorrectionLib: 9, last pushed 23 days ago -->
<!-- SiPM: 6, last pushed 2 days ago -->
<!-- CorrectionLib: 9, last pushed 11 days ago -->
<!-- SiPM: 6, last pushed 4 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.6.0
install: python -m pip install cibuildwheel==2.6.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.6.0
pip3 install cibuildwheel==2.6.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.6.0
python3 -m pip install cibuildwheel==2.6.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.6.0
pip install cibuildwheel==2.6.1
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
+2 -2
View File
@@ -11,7 +11,7 @@ jobs:
- run:
name: Build the Linux wheels.
command: |
pip3 install --user cibuildwheel==2.6.0
pip3 install --user cibuildwheel==2.6.1
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
@@ -25,7 +25,7 @@ jobs:
- run:
name: Build the OS X wheels.
command: |
pip3 install cibuildwheel==2.6.0
pip3 install cibuildwheel==2.6.1
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build wheels
uses: pypa/cibuildwheel@v2.6.0
uses: pypa/cibuildwheel@v2.6.1
env:
CIBW_ARCHS_MACOS: x86_64 universal2
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build wheels
uses: pypa/cibuildwheel@v2.6.0
uses: pypa/cibuildwheel@v2.6.1
- uses: actions/upload-artifact@v2
with:
+1 -1
View File
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build wheels
uses: pypa/cibuildwheel@v2.6.0
uses: pypa/cibuildwheel@v2.6.1
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.6.0
uses: pypa/cibuildwheel@v2.6.1
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
+1 -1
View File
@@ -12,7 +12,7 @@ linux:
DOCKER_TLS_CERTDIR: ""
script:
- curl -sSL https://get.docker.com/ | sh
- python -m pip install cibuildwheel==2.6.0
- python -m pip install cibuildwheel==2.6.1
- cibuildwheel --output-dir wheelhouse
artifacts:
paths:
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
install:
- python3 -m pip install cibuildwheel==2.6.0
- python3 -m pip install cibuildwheel==2.6.1
script:
# build the wheels, put them into './dist'
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
install:
- python3 -m pip install cibuildwheel==2.6.0
- python3 -m pip install cibuildwheel==2.6.1
script:
# build the wheels, put them into './wheelhouse'
+2 -2
View File
@@ -55,7 +55,7 @@ jobs:
- stage: deploy
name: Build and deploy Linux wheels
services: docker
install: python3 -m pip install cibuildwheel==2.6.0 twine
install: python3 -m pip install cibuildwheel==2.6.1 twine
script: python3 -m cibuildwheel --output-dir wheelhouse
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
# Deploy on windows
@@ -63,7 +63,7 @@ jobs:
name: Build and deploy Windows wheels
os: windows
language: shell
install: python3 -m pip install cibuildwheel==2.6.0 twine
install: python3 -m pip install cibuildwheel==2.6.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.6.0
version = 2.6.1
description = Build Python wheels on CI with minimal configuration.
long_description = file: README.md
long_description_content_type = text/markdown