Compare commits

...

3 Commits

Author SHA1 Message Date
dependabot[bot] 27c7804f36
Merge 2aaa3fcf4c into 01a713c32a 2024-01-29 08:35:00 +00:00
dependabot[bot] 2aaa3fcf4c
Bump pypa/cibuildwheel from 2.16.2 to 2.16.4
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.2 to 2.16.4.
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](https://github.com/pypa/cibuildwheel/compare/v2.16.2...v2.16.4)

---
updated-dependencies:
- dependency-name: pypa/cibuildwheel
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-29 08:34:57 +00:00
Fabien LOISON 01a713c32a
chore: Fixed coding style according to Black 24.x 2024-01-29 09:31:16 +01:00
3 changed files with 6 additions and 5 deletions

View File

@ -62,7 +62,7 @@ jobs:
submodules: true
- name: "Build wheels"
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.16.4
env:
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
CIBW_SKIP: cp*-win32

View File

@ -177,9 +177,11 @@ def clean_png(data):
chunks.append(
{
"type": "IDAT",
"data": idat_zopfli
if len(idat_zopfli) <= len(idat_concat)
else idat_concat,
"data": (
idat_zopfli
if len(idat_zopfli) <= len(idat_concat)
else idat_concat
),
}
)

View File

@ -2,7 +2,6 @@
This module contains functions binded from the Assimp C++ API.
"""
from ._assimp import lib, ffi