CI: remove cython3 beta testing (#2024)
* CI: remove cython3 beta testing Cython 3.0.0 was released: https://cython.readthedocs.io/en/latest/src/changes.html * CI: remove duplicate run
This commit is contained in:
parent
60289666dc
commit
6107749cbe
|
@ -26,14 +26,12 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
name: Test Python ${{ matrix.python.version }} ${{ matrix.os }} ${{ matrix.cython }}
|
name: Test Python ${{ matrix.python.version }} ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
cython:
|
|
||||||
- '' # default
|
|
||||||
python:
|
python:
|
||||||
- {version: '3.8'}
|
- {version: '3.8'}
|
||||||
- {version: '3.9'}
|
- {version: '3.9'}
|
||||||
|
@ -45,9 +43,6 @@ jobs:
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
- python: {version: '3.10'} # current
|
- python: {version: '3.10'} # current
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
- python: {version: '3.10'} # current
|
|
||||||
os: ubuntu-latest
|
|
||||||
cython: beta
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -55,11 +50,6 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python.version }}
|
python-version: ${{ matrix.python.version }}
|
||||||
- name: Install cython beta
|
|
||||||
if: ${{ matrix.cython == 'beta' }}
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
python -m pip install --pre --upgrade cython
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in New Issue