Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pypy-3.11-nightly runs #51

Merged
merged 2 commits into from
Nov 17, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/cython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
os: [ubuntu, windows, macOS]
backend: [c]
python_version: [pypy-3.10-nightly, pypy-3.9-nightly]
python_version: [pypy-3.10-nightly, pypy-3.11-nightly]
extra_cflags: ['', '-DCYTHON_USE_TYPE_SPECS=1']
include:
- os: windows
Expand Down Expand Up @@ -64,15 +64,15 @@ jobs:
if : ${{ matrix.os == 'ubuntu' }}
run: |
python -m pip install --upgrade pip
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
python -m pip install pythran --no-build-isolation
# python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
# python -m pip install pythran --no-build-isolation

- name: install external dependencies
if : ${{ matrix.os == 'macos' }}
run: |
python -m pip install --upgrade pip
python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
python -m pip install pythran --no-build-isolation
# python -m pip install numpy -Csetup-args="-Dallow-noblas=true"
# python -m pip install pythran --no-build-isolation

- name: Enable long paths on Windows
if: startsWith(runner.os, 'Windows')
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nanobind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'ubuntu-latest', 'ubuntu-latest', 'ubuntu-latest']
python: ['pypy3.9-nightly', 'pypy3.10-nightly']
os: ['ubuntu-latest']
python: ['pypy-3.11-nightly', 'pypy-3.10-nightly']

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
name: "${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}

steps:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/numpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python_version: [pypy-3.10-nightly]
python_version: [pypy-3.11-nightly]

timeout-minutes: 120

Expand Down Expand Up @@ -69,7 +69,11 @@ jobs:
run: |
cd repo
python -c "import os; print('PKG_CONFIG_PATH', os.environ['PKG_CONFIG_PATH'])"
python -m pip install . -v -Csetup-args="--vsenv"
# python -m pip install . -v -Csetup-args="--vsenv"
# Use a newer cython
python -m pip install -r requirements/build_requirements.txt
python -m pip install git+https://github.com/cython/cython.git
python -m pip install --no-build-isolation . -v -Csetup-args="--vsenv"

- name: Test
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pybind11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: [ubuntu-latest, windows-2022, macos-latest]
python:
- 'pypy-3.10-nightly'
- 'pypy-3.9-nightly'
- 'pypy-3.11-nightly'

# Items in here will either be added to the build matrix (if not
# present), or add new keys to an existing matrix element if all the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python_version: [pypy-3.10-nightly, pypy-3.9-nightly]
python_version: [pypy-3.10-nightly, pypy-3.11-nightly]

timeout-minutes: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- os: windows-latest
name: pypy3.9-nightly-windows
toxname: pypy3
python-version: pypy-3.9-nightly
python-version: pypy-3.11-nightly

steps:
- name: Set Newline Behavior
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
os: [ubuntu-20.04]
cpp-version: [g++-8, clang-7]
python_version:
- [pypy-3.10-nightly, pypy10]
- [pypy-3.9-nightly, pypy39]
- [pypy-3.10-nightly, pypy310]
- [pypy-3.11-nightly, pypy311]
steps:
- uses: actions/[email protected]
with:
Expand Down
Loading