Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand All @@ -185,7 +185,7 @@ jobs:
allow-prereleases: true

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: true

Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
timeout-minutes: 40
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Add wget and python3
run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
- name: Install 🐍 3
Expand All @@ -361,7 +361,7 @@ jobs:
# container: centos:8
#
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
#
# - name: Add Python 3 and a few requirements
# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
DEBIAN_FRONTEND: 'noninteractive'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Clean out unused stuff to save space
run: |
Expand Down Expand Up @@ -477,7 +477,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Add Python 3
run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
Expand Down Expand Up @@ -542,7 +542,7 @@ jobs:
name: "🐍 3 • ICC latest • x64"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Add apt repo
run: |
Expand Down Expand Up @@ -658,7 +658,7 @@ jobs:

steps:
- name: Latest actions/checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Add Python 3.8
if: matrix.container == 'almalinux:8'
Expand Down Expand Up @@ -718,7 +718,7 @@ jobs:

steps:
# v1 required for i386/debian container; pinned to SHA to prevent dependabot updates
- uses: actions/checkout@544eadc6bf3d226fd7a7a9f0dc5b5bf7ca0675b9 # v1
- uses: actions/checkout@4f1f4aec02e41874fa0262ea8ff5172d7978ad1e # v1

- name: Install requirements
run: |
Expand Down Expand Up @@ -763,7 +763,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -810,7 +810,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -863,7 +863,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -912,7 +912,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -1000,7 +1000,7 @@ jobs:
mingw-w64-${{matrix.env}}-catch
${{ matrix.extra_install }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Configure C++11
# LTO leads to many undefined reference like
Expand Down Expand Up @@ -1094,7 +1094,7 @@ jobs:
run: env

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Clang
uses: egor-tensin/setup-clang@v2
Expand Down Expand Up @@ -1168,7 +1168,7 @@ jobs:
run: env

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -1235,7 +1235,7 @@ jobs:
shell: msys2 {0}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python 3.11
uses: actions/setup-python@v6
with:
python-version: 3.11

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0

- name: Prepare env
run: uv pip install --python=python --system -r tests/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-link.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check for docs changes
id: docs_changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.x"
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
container: silkeh/clang:20
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install requirements
run: apt-get update && apt-get install -y git python3-dev python3-pytest ninja-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
if: github.repository_owner == 'pybind'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0

- name: Build SDist and wheels
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup 🐍 3.8
uses: actions/setup-python@v6
with:
python-version: 3.8

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0

- name: Prepare env
run: uv pip install --system -r tests/requirements.txt
Expand All @@ -47,15 +47,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup 🐍 3.8
uses: actions/setup-python@v6
with:
python-version: 3.8

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0

- name: Prepare env
run: uv pip install --system -r tests/requirements.txt twine nox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@v6
Expand All @@ -51,7 +51,7 @@ jobs:
run: brew install boost

- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: true

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests-cibw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
name: Pyodide wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v3.4
- uses: pypa/cibuildwheel@v4.1
env:
PYODIDE_BUILD_EXPORTS: whole_archive
with:
Expand All @@ -40,15 +40,15 @@ jobs:
matrix:
runs-on: [macos-14, macos-15-intel]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0

# We have to uninstall first because GH is now using a local tap to build cmake<4, iOS needs cmake>=4
- run: brew uninstall cmake && brew install cmake

- uses: pypa/cibuildwheel@v3.4
- uses: pypa/cibuildwheel@v4.1
env:
CIBW_PLATFORM: ios
CIBW_SKIP: cp314-* # https://github.com/pypa/cibuildwheel/issues/2494
Expand All @@ -63,7 +63,7 @@ jobs:
matrix:
runs-on: [macos-latest, macos-15-intel, ubuntu-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
Expand All @@ -73,7 +73,7 @@ jobs:
if: contains(matrix.runs-on, 'macos')
run: echo "CIBW_TEST_COMMAND=" >> "$GITHUB_ENV"

- uses: pypa/cibuildwheel@v3.4
- uses: pypa/cibuildwheel@v4.1
env:
CIBW_PLATFORM: android
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: "contains(github.event.pull_request.labels.*.name, 'python dev')"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python 3.13
uses: actions/setup-python@v6
Expand Down
Loading