mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2026-06-22 17:45:45 +01:00
ea80b0a544
* pip-deps(deps): bump the python-dependencies group across 1 directory with 30 updates --- updated-dependencies: - dependency-name: maturin dependency-version: 1.14.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: numpy dependency-version: 2.4.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: ruff dependency-version: 0.15.18 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: mypy dependency-version: 2.1.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: python-dependencies - dependency-name: pytest dependency-version: 9.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: pytest-cov dependency-version: 7.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: sphinxcontrib-rust dependency-version: 1.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: pydata-sphinx-theme dependency-version: 0.19.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: anyio dependency-version: 4.14.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: babel dependency-version: 2.18.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: beautifulsoup4 dependency-version: 4.15.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: certifi dependency-version: 2026.6.17 dependency-type: indirect update-type: version-update:semver-major dependency-group: python-dependencies - dependency-name: charset-normalizer dependency-version: 3.4.7 dependency-type: indirect update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: click dependency-version: 8.4.1 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: coverage dependency-version: 7.14.1 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: idna dependency-version: '3.18' dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: imagesize dependency-version: 1.5.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: librt dependency-version: 0.11.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: mdit-py-plugins dependency-version: 0.6.1 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: packaging dependency-version: '26.2' dependency-type: indirect update-type: version-update:semver-major dependency-group: python-dependencies - dependency-name: pathspec dependency-version: 1.1.1 dependency-type: indirect update-type: version-update:semver-major dependency-group: python-dependencies - dependency-name: pygments dependency-version: 2.20.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: requests dependency-version: 2.34.2 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: snowballstemmer dependency-version: 3.1.1 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: soupsieve dependency-version: 2.8.4 dependency-type: indirect update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: starlette dependency-version: 1.3.1 dependency-type: indirect update-type: version-update:semver-major dependency-group: python-dependencies - dependency-name: urllib3 dependency-version: 2.7.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: uvicorn dependency-version: 0.49.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: watchfiles dependency-version: 1.2.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: websockets dependency-version: '16.0' dependency-type: indirect update-type: version-update:semver-major dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Updated python versions for testing --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cian Hughes <chughes000@gmail.com>
211 lines
6.0 KiB
YAML
211 lines
6.0 KiB
YAML
# This file is autogenerated by maturin v1.8.6
|
|
# To update, run
|
|
#
|
|
# maturin generate-ci github
|
|
#
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
tags:
|
|
- "*"
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ${{ matrix.platform.runner }}
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- runner: ubuntu-22.04
|
|
target: x86_64
|
|
- runner: ubuntu-22.04
|
|
target: x86
|
|
- runner: ubuntu-22.04
|
|
target: aarch64
|
|
- runner: ubuntu-22.04
|
|
target: armv7
|
|
- runner: ubuntu-22.04
|
|
target: s390x
|
|
- runner: ubuntu-22.04
|
|
target: ppc64le
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
- name: Build wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
manylinux: auto
|
|
- name: Build free-threaded wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist -i python3.14t
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
manylinux: auto
|
|
- name: Upload wheels
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wheels-linux-${{ matrix.platform.target }}
|
|
path: dist
|
|
|
|
musllinux:
|
|
runs-on: ${{ matrix.platform.runner }}
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- runner: ubuntu-22.04
|
|
target: x86_64
|
|
- runner: ubuntu-22.04
|
|
target: x86
|
|
- runner: ubuntu-22.04
|
|
target: aarch64
|
|
- runner: ubuntu-22.04
|
|
target: armv7
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
- name: Build wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
manylinux: musllinux_1_2
|
|
- name: Build free-threaded wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist -i python3.14t
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
manylinux: musllinux_1_2
|
|
- name: Upload wheels
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
path: dist
|
|
|
|
windows:
|
|
runs-on: ${{ matrix.platform.runner }}
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- runner: windows-latest
|
|
target: x64
|
|
- runner: windows-latest
|
|
target: x86
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
architecture: ${{ matrix.platform.target }}
|
|
- name: Build wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
# Excluded windows free threaded build, because it doesn't seem to work properly
|
|
# - name: Build free-threaded wheels
|
|
# uses: PyO3/maturin-action@v1
|
|
# with:
|
|
# target: ${{ matrix.platform.target }}
|
|
# args: --release --out dist -i python3.14t
|
|
# sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
- name: Upload wheels
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wheels-windows-${{ matrix.platform.target }}
|
|
path: dist
|
|
|
|
macos:
|
|
runs-on: ${{ matrix.platform.runner }}
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- runner: macos-14
|
|
target: aarch64
|
|
- runner: macos-15
|
|
target: aarch64
|
|
- runner: macos-15-intel
|
|
target: aarch64
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
- name: Build wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
- name: Build free-threaded wheels
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
target: ${{ matrix.platform.target }}
|
|
args: --release --out dist -i python3.14t
|
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
- name: Upload wheels
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
path: dist
|
|
|
|
sdist:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Build sdist
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
command: sdist
|
|
args: --out dist
|
|
- name: Upload sdist
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wheels-sdist
|
|
path: dist
|
|
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
|
needs: [linux, musllinux, windows, macos, sdist]
|
|
permissions:
|
|
# Use to sign the release artifacts
|
|
id-token: write
|
|
# Used to upload release artifacts
|
|
contents: write
|
|
# Used to generate artifact attestation
|
|
attestations: write
|
|
steps:
|
|
- uses: actions/download-artifact@v5
|
|
- name: Generate artifact attestation
|
|
uses: actions/attest-build-provenance@v3
|
|
with:
|
|
subject-path: "wheels-*/*"
|
|
- name: Publish to PyPI
|
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
uses: PyO3/maturin-action@v1
|
|
env:
|
|
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
with:
|
|
command: upload
|
|
args: --non-interactive --skip-existing wheels-*/*
|