Skip to content

Commit 92553cd

Browse files
committed
CI: Don't stop on jupyter_core warning
1 parent cb88140 commit 92553cd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/html-macos.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,8 @@ jobs:
3737
run: |
3838
$PIP install -r doc/requirements.txt
3939
- name: Build HTML
40+
env:
41+
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
42+
PYTHONWARNINGS: error,default::DeprecationWarning
4043
run: |
4144
$SPHINX doc/ _build/html/

.github/workflows/linkcheck.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
run: |
3939
$PIP install -r doc/requirements.txt
4040
- name: Check links
41+
env:
42+
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
43+
PYTHONWARNINGS: error,default::DeprecationWarning
4144
run: |
4245
$SPHINX -d _doctrees/ doc/ _build/linkcheck/ -b linkcheck -q
4346
- name: Upload results

0 commit comments

Comments
 (0)