##// END OF EJS Templates
Remove all references to notebooks (#14572)...
Remove all references to notebooks (#14572) IPython repo is just the CLI, and those are unmaintained. Reduce the size of the repo, and if anything those should migrate to notebook or lab, or be a separate example repo.

File last commit:

r28856:18934670
r28983:92b295a4 merge
Show More
downstream.yml
73 lines | 2.4 KiB | text/x-yaml | YamlLexer
Matthias Bussonnier
Try to test downstream deps
r27031 name: Run Downstream tests
on:
push:
pull_request:
# Run weekly on Monday at 1:23 UTC
schedule:
- cron: '23 1 * * 1'
workflow_dispatch:
Matthias Bussonnier
SEC: force workflows to be read-only....
r27782 permissions:
contents: read
Matthias Bussonnier
Try to test downstream deps
r27031
jobs:
test:
runs-on: ${{ matrix.os }}
Ian Thomas
Disable scheduled CI runs on forks
r28693 # Disable scheduled CI runs on forks
if: github.event_name != 'schedule' || github.repository_owner == 'ipython'
Matthias Bussonnier
Try to test downstream deps
r27031 strategy:
matrix:
os: [ubuntu-latest]
Matthias Bussonnier
Drop Python 3.9...
r28529 python-version: ["3.10"]
Matthias Bussonnier
Try to test downstream deps
r27031 include:
Ian Thomas
Use macos-13 not macos-latest for downstream tests
r28745 - os: macos-13
Matthias Bussonnier
Drop Python 3.9...
r28529 python-version: "3.10"
Matthias Bussonnier
Try to test downstream deps
r27031
steps:
Brigitta Sipőcz
CI: update actions version
r28856 - uses: actions/checkout@v4
Matthias Bussonnier
Try to test downstream deps
r27031 - name: Set up Python ${{ matrix.python-version }}
Brigitta Sipőcz
CI: update actions version
r28856 uses: actions/setup-python@v5
Matthias Bussonnier
Try to test downstream deps
r27031 with:
python-version: ${{ matrix.python-version }}
- name: Update Python installer
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install ipykernel
run: |
Ian Thomas
Fix downstream ipykernel tests
r28744 cd ..
Matthias Bussonnier
Try to test downstream deps
r27031 git clone https://github.com/ipython/ipykernel
cd ipykernel
Ian Thomas
Fix downstream ipykernel tests
r28744 pip install -e .[test]
Matthias Bussonnier
Try to test downstream deps
r27031 cd ..
- name: Install and update Python dependencies
run: |
python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
luz paz
Fix various typos...
r27520 # we must install IPython after ipykernel to get the right versions.
Matthias Bussonnier
Try to test downstream deps
r27031 python -m pip install --upgrade --upgrade-strategy eager flaky ipyparallel
Matthias Koeppe
.github/workflows/downstream.yml: Test with sagemath-repl
r28615 - name: pytest ipykernel
Matthias Bussonnier
Try to test downstream deps
r27031 env:
COLUMNS: 120
run: |
cd ../ipykernel
pytest
Matthias Koeppe
.github/workflows/downstream.yml: Test with sagemath-repl
r28615 - name: Install sagemath-repl
run: |
M Bussonnier
stop tesing sage for now
r28852 # Sept 2024, sage has been failing for a while,
# Skipping.
# cd ..
# git clone --depth 1 https://github.com/sagemath/sage
# cd sage
# # We cloned it for the tests, but for simplicity we install the
# # wheels from PyPI.
# # (Avoid 10.3b6 because of https://github.com/sagemath/sage/pull/37178)
# pip install --pre sagemath-repl sagemath-environment
# # Install optionals that make more tests pass
# pip install pillow
# pip install --pre sagemath-categories
# cd ..
Matthias Koeppe
.github/workflows/downstream.yml: Use sage-runtests directly, do not use tox
r28617 - name: Test sagemath-repl
Matthias Koeppe
.github/workflows/downstream.yml: Test with sagemath-repl
r28615 run: |
M Bussonnier
stop tesing sage for now
r28852 # cd ../sage/
# # From https://github.com/sagemath/sage/blob/develop/pkgs/sagemath-repl/tox.ini
# sage-runtests -p --environment=sage.all__sagemath_repl --baseline-stats-path=pkgs/sagemath-repl/known-test-failures.json --initial --optional=sage src/sage/repl src/sage/doctest src/sage/misc/sage_input.py src/sage/misc/sage_eval.py