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
52 changes: 26 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
timeout-minutes: 40
container: quay.io/pypa/musllinux_1_2_x86_64:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -252,10 +252,10 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
uses: deadsnakes/action@v3.1.0
uses: deadsnakes/action@v3.2.0
with:
python-version: ${{ matrix.python-version }}
debug: ${{ matrix.python-debug }}
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
container: "silkeh/clang:${{ matrix.clang }}${{ matrix.container_suffix }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- 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 @@ -390,7 +390,7 @@ jobs:
container: nvidia/cuda:12.2.0-devel-ubuntu22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
- name: Install 🐍 3
Expand All @@ -414,7 +414,7 @@ jobs:
# container: centos:8
#
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
#
# - 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 @@ -459,7 +459,7 @@ jobs:
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
DEBIAN_FRONTEND: 'noninteractive'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add NVHPC Repo
run: |
Expand Down Expand Up @@ -519,7 +519,7 @@ jobs:
container: "gcc:${{ matrix.gcc }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- 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 @@ -577,7 +577,7 @@ jobs:
name: "🐍 3 • ICC latest • x64"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

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

steps:
- name: Latest actions/checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Add Python 3.8
if: matrix.container == 'almalinux:8'
Expand Down Expand Up @@ -733,7 +733,7 @@ jobs:
container: i386/debian:bullseye

steps:
- uses: actions/checkout@v1 # v1 is required to run inside docker
- uses: actions/checkout@v5 # v1 is required to run inside docker

- name: Install requirements
run: |
Expand Down Expand Up @@ -776,9 +776,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -833,10 +833,10 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
architecture: x86
Expand Down Expand Up @@ -886,10 +886,10 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
architecture: x86
Expand Down Expand Up @@ -934,10 +934,10 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -1021,7 +1021,7 @@ jobs:
mingw-w64-${{matrix.env}}-python-scipy
mingw-w64-${{matrix.env}}-eigen3

- uses: actions/checkout@v4
- uses: actions/checkout@v5

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

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Clang
uses: egor-tensin/setup-clang@v1

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}

- name: Update CMake
uses: jwlawson/[email protected]

- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v5
uses: seanmiddleditch/gha-setup-ninja@v6

- name: Run pip installs
run: |
Expand Down Expand Up @@ -1170,7 +1170,7 @@ jobs:
run: env

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Show Clang++ version before brew install llvm
run: clang++ --version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python 3.8
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8
architecture: ${{ matrix.arch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
name: Pyodide wheel
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v2.20
- uses: pypa/cibuildwheel@v3.1
env:
PYODIDE_BUILD_EXPORTS: whole_archive
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Add matchers
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
container: silkeh/clang:18-bookworm
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install requirements
run: apt-get update && apt-get install -y git python3-dev python3-pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
pull-requests: write
steps:

- uses: actions/labeler@v5
- uses: actions/labeler@v6
if: >
github.event.pull_request.merged == true &&
!startsWith(github.event.pull_request.title, 'chore(deps):') &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
if: "contains(github.event.pull_request.labels.*.name, 'python dev')"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python 3.13
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"
allow-prereleases: true
Expand Down
Loading