Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 530fbbc

Browse files
committed
Add temporary CI run using pre-release IPython and matplotlib-inline
1 parent 579f415 commit 530fbbc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ jobs:
9595
python-version: '3.12'
9696
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
9797
pyside6-ver: '!=6.5.1'
98+
# Temporary CI run using pre-release IPython and matplotlib-inline
99+
- name-suffix: 'Pre-release IPython'
100+
os: ubuntu-22.04
101+
python-version: '3.12'
102+
extra-requirements: '-r requirements/testing/extra.txt'
98103

99104
steps:
100105
- uses: actions/checkout@v4
@@ -281,6 +286,15 @@ jobs:
281286
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
282287
--upgrade --only-binary=:all: numpy pandas
283288
289+
- name: Install pre-release IPython and matplotlib-inline
290+
if: matrix.name-suffix == 'Pre-release IPython'
291+
# Temporary, until release of IPython 8.24
292+
run: |
293+
pip list
294+
pip install git+https://github.com/ianthomas23/ipython@entry_points
295+
pip install git+https://github.com/ipython/matplotlib-inline@main
296+
pip list
297+
284298
- name: Install Matplotlib
285299
run: |
286300
ccache -s

0 commit comments

Comments
 (0)