Skip to content

Commit 6de83ee

Browse files
dependabot[bot]henryiiipre-commit-ci[bot]
authored
chore(deps): bump the actions group across 1 directory with 2 updates (#947)
* chore(deps): bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) and [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance). Updates `docker/setup-qemu-action` from 3.0.0 to 3.2.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3.0.0...v3.2.0) Updates `actions/attest-build-provenance` from 1.1.2 to 1.4.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@173725a...210c191) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * Update pyproject.toml * Update README.md * style: pre-commit fixes --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 8692d97 commit 6de83ee

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fetch-depth: 0
5454
submodules: true
5555

56-
- uses: docker/setup-qemu-action@v3.0.0
56+
- uses: docker/setup-qemu-action@v3.2.0
5757
with:
5858
platforms: all
5959

@@ -154,7 +154,7 @@ jobs:
154154
run: ls -lh dist
155155

156156
- name: Generate artifact attestation for sdist and wheels
157-
uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2
157+
uses: actions/attest-build-provenance@210c1913531870065f03ce1f9440dd87bc0938cd # v1.4.0
158158
with:
159159
subject-path: "dist/boost_histogram-*"
160160

README.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -190,19 +190,17 @@ when you run the above command on a supported platform. Wheels are produced usin
190190
[cibuildwheel](https://cibuildwheel.readthedocs.io/en/stable/); all common
191191
platforms have wheels provided in boost-histogram:
192192

193-
| System | Arch | Python versions | PyPy versions |
194-
| ---------------- | ----------- | ------------------------------- | ------------------- |
195-
| ManyLinux2014 | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.7, 3.8, 3.9, 3.10 |
196-
| ManyLinux2014 | ARM64 | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.7, 3.8, 3.9, 3.10 |
197-
| MuslLinux_1_1 | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | |
198-
| macOS 10.9+ | 64-bit | 3.7 | 3.7, 3.8, 3.9, 3.10 |
199-
| macOS Universal2 | Arm64 | 3.8, 3.9, 3.10, 3.11, 3.12 | |
200-
| Windows | 32 & 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | |
201-
| Windows | 64-bit | | 3.7, 3.8, 3.9, 3.10 |
202-
203-
- manylinux2014: Requires pip 19.3.
204-
- ARM on Linux is supported. PowerPC or IBM-Z available on request.
205-
- macOS Universal2 wheels for Apple Silicon and Intel provided for Python 3.8+ (requires Pip 21.0.1 or newer).
193+
| System | Arch | Python versions | PyPy versions |
194+
| ----------------- | ------ | ------------------------------- | ------------- |
195+
| manylinux2014 | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.9, 3.10 |
196+
| manylinux2014 | ARM64 | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.9, 3.10 |
197+
| musllinux_1_1 | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | |
198+
| macOS 10.9+ Intel | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.9, 3.10 |
199+
| macOS 11+ AS | Arm64 | 3.8, 3.9, 3.10, 3.11, 3.12 | 3.9, 3.10 |
200+
| Windows | 32-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | |
201+
| Windows | 64-bit | 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 | 3.9, 3.10 |
202+
203+
PowerPC or IBM-Z wheels are not provided but are available on request.
206204

207205
If you are on a Linux system that is not part of the "many" in manylinux or musl in musllinux, such as ClearLinux, building from source is usually fine, since the compilers on those systems are often quite new. It will just take longer to install when it is using the sdist instead of a wheel. All dependencies are header-only and included.
208206

@@ -216,7 +214,7 @@ conda install -c conda-forge boost-histogram
216214

217215
#### Source builds
218216

219-
For a source build, for example from an "SDist" package, the only requirements are a C++14 compatible compiler. The compiler requirements are dictated by Boost.Histogram's C++ requirements: gcc >= 5.5, clang >= 3.8, or msvc >= 14.1. You should have a version of pip less than 2-3 years old (10+).
217+
For a source build, for example from an "SDist" package, the only requirements are a C++14 compatible compiler. The compiler requirements are dictated by Boost.Histogram's C++ requirements: gcc >= 5.5, clang >= 3.8, or msvc >= 14.1.
220218

221219
Boost is not required or needed (this only depends on included header-only dependencies). You can install directly from GitHub if you would like.
222220

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,15 @@ build-frontend = "build[uv]"
159159
test-extras = "test"
160160
test-command = "pytest --benchmark-disable {project}/tests"
161161
test-skip = [
162-
"pp37-*",
163-
"pp38-*",
164162
"pp310-*",
165163
"*universal2:arm64",
166164
"cp38-macosx_*:arm64",
167165
"cp*-*musllinux*", # segfault
168166
]
167+
skip = [
168+
"pp37-*",
169+
"pp38-*",
170+
]
169171
environment-pass = ["SETUPTOOLS_SCM_PRETEND_VERSION"]
170172
environment.PIP_ONLY_BINARY = "numpy"
171173
environment.PIP_PREFER_BINARY = "1"

0 commit comments

Comments
 (0)