Bump version: v2.4.0
This commit is contained in:
@@ -2,6 +2,19 @@
|
||||
title: Changelog
|
||||
---
|
||||
|
||||
### v2.4.0
|
||||
|
||||
_2 April 2022_
|
||||
|
||||
- ✨ cibuildwheel now supports running locally on Windows and macOS (as well as Linux). On macOS, you'll have to install the versions of Pythons that you want to use from Python.org, and cibuildwheel will use them. On Windows, cibuildwheel will install it's own versions of Python. Check out [the documentation](https://cibuildwheel.readthedocs.io/en/stable/setup/#local) for instructions. (#974)
|
||||
- ✨ Added support for building PyPy 3.9 wheels. (#1031)
|
||||
- ✨ Listing at the end of the build now displays the size of each wheel (#975)
|
||||
- 🐛 Workaround a connection timeout bug on Travis CI ppc64le runners (#906)
|
||||
- 🐛 Fix an encoding error when reading setup.py in the wrong encoding (#977)
|
||||
- 🛠 Setuptools updated to 61.3.0, including experimental support for reading config from pyproject.toml(PEP 621). This could change the behaviour of your build if you have a pyproject.toml with a `[project]` table, because that takes precedence over setup.py and setup.cfg. Check out the [setuptools docs](https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html) and the [project metadata specification](https://packaging.python.org/en/latest/specifications/declaring-project-metadata/) for more info.
|
||||
- 🛠 Many other dependency updates.
|
||||
- 📚 Minor docs improvements
|
||||
|
||||
### v2.3.1
|
||||
|
||||
_14 December 2021_
|
||||
|
||||
+2
-2
@@ -127,7 +127,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.3.1
|
||||
uses: pypa/cibuildwheel@v2.4.0
|
||||
```
|
||||
|
||||
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.
|
||||
@@ -153,7 +153,7 @@ The second option, and the only one that supports other CI systems, is using a `
|
||||
|
||||
```bash
|
||||
# requirements-cibw.txt
|
||||
cibuildwheel==2.3.1
|
||||
cibuildwheel==2.4.0
|
||||
```
|
||||
|
||||
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
@@ -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.3.1
|
||||
run: pipx run cibuildwheel==2.4.0
|
||||
|
||||
- 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.3.1
|
||||
run: python -m pip install cibuildwheel==2.4.0
|
||||
|
||||
- name: Build wheels
|
||||
run: python -m cibuildwheel --output-dir wheelhouse
|
||||
|
||||
Reference in New Issue
Block a user