|
15 | 15 | jobs: |
16 | 16 | test: |
17 | 17 | runs-on: ${{ matrix.os }} |
| 18 | + timeout-minutes: 15 |
18 | 19 | # Disable scheduled CI runs on forks |
19 | 20 | if: github.event_name != 'schedule' || github.repository_owner == 'ipython' |
20 | 21 | strategy: |
|
28 | 29 | - os: macos-latest |
29 | 30 | python-version: "3.11" |
30 | 31 | deps: test_extra |
31 | | - # Tests minimal dependencies set |
| 32 | + # free threaded, not with all dependencies |
32 | 33 | - os: ubuntu-latest |
33 | | - python-version: "3.11" |
34 | | - deps: test |
35 | | - # Tests latest released Python version |
36 | | - - os: ubuntu-latest |
37 | | - python-version: "3.13" |
| 34 | + python-version: "3.14t" |
38 | 35 | deps: test |
39 | 36 | # Tests latest development Python version |
40 | 37 | - os: ubuntu-latest |
@@ -72,13 +69,13 @@ jobs: |
72 | 69 | if: ${{ ! contains( matrix.python-version, 'dev' ) }} |
73 | 70 | run: | |
74 | 71 | python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build |
75 | | - python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}] |
| 72 | + python -m pip install --no-binary curio --no-binary psutil --no-binary tornado --upgrade -e .[${{ matrix.deps }}] |
76 | 73 | python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov pytest |
77 | 74 | - name: Install and update Python dependencies (dev?) |
78 | 75 | if: ${{ contains( matrix.python-version, 'dev' ) }} |
79 | 76 | run: | |
80 | 77 | python -m pip install --pre --upgrade pip setuptools wheel build |
81 | | - python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --no-binary curio --upgrade -e .[${{ matrix.deps }}] |
| 78 | + python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --no-binary curio --no-binary psutil --no-binary tornado --upgrade -e .[${{ matrix.deps }}] |
82 | 79 | python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --upgrade check-manifest pytest-cov |
83 | 80 | - name: Try building with Python build |
84 | 81 | if: runner.os != 'Windows' # setup.py does not support sdist on Windows |
|
0 commit comments