##// END OF EJS Templates
Prevent crash on StackData NotOneValueFound. (#14286)...
Prevent crash on StackData NotOneValueFound. (#14286) This is a workaround for #13598, It does not fix the root cause, but should prevent IPython crash. Worst case it should just not show the relevant frame

File last commit:

r28529:ca55e702
r28574:9699b3e6 merge
Show More
downstream.yml
52 lines | 1.3 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 }}
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:
- os: macos-latest
Matthias Bussonnier
Drop Python 3.9...
r28529 python-version: "3.10"
Matthias Bussonnier
Try to test downstream deps
r27031
steps:
Christian Clauss
Upgrade GitHub Actions
r27724 - uses: actions/checkout@v3
Matthias Bussonnier
Try to test downstream deps
r27031 - name: Set up Python ${{ matrix.python-version }}
Christian Clauss
Upgrade GitHub Actions
r27724 uses: actions/setup-python@v4
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: |
cd ..
git clone https://github.com/ipython/ipykernel
cd ipykernel
pip install -e .[test]
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 Bussonnier
try to fix downstream
r28174 python -m pip install --upgrade 'pytest<7' 'pytest_asyncio<0.21'
Matthias Bussonnier
Try to test downstream deps
r27031 - name: pytest
env:
COLUMNS: 120
run: |
cd ../ipykernel
pytest