Skip to content

Commit f31b1cc

Browse files
chore(deps): bump pypa/cibuildwheel from 2.12.3 to 2.13.0 (#91)
* chore(deps): bump pypa/cibuildwheel from 2.12.3 to 2.13.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.12.3 to 2.13.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v2.12.3...v2.13.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update .github/workflows/wheels.yml * fix: hide 3.12 warning from pytest Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
1 parent 27b3126 commit f31b1cc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ jobs:
4747
with:
4848
submodules: true
4949

50-
- uses: pypa/cibuildwheel@v2.12.3
50+
- uses: pypa/cibuildwheel@v2.13.0
5151
env:
5252
CIBW_ARCHS_MACOS: universal2
5353
CIBW_ARCHS_WINDOWS: auto ARM64
54+
CIBW_PRERELEASE_PYTHONS: true
5455

5556
- name: Verify clean directory
5657
run: git diff --exit-code

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ wheel.expand-macos-universal-tags = true
3535
minversion = "6.0"
3636
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
3737
xfail_strict = true
38-
filterwarnings = ["error"]
38+
filterwarnings = [
39+
"error",
40+
"ignore:(ast.Str|Attribute s|ast.NameConstant|ast.Num) is deprecated:DeprecationWarning:_pytest", # Python 3.12
41+
]
3942
testpaths = ["tests"]
4043

4144

0 commit comments

Comments
 (0)