Skip to content

Commit 3dc6b52

Browse files
Update ipython requirement from !=8.1.0,<8.5 to !=8.1.0,<8.15 (#521)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Holdgraf <[email protected]>
1 parent 22a0393 commit 3dc6b52

13 files changed

+18
-18
lines changed

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# this is only required by coconut kernel
2-
ipython<=7.11.0
2+
ipython<=8.14.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ testing = [
9292
# for issue with 8.1.0 see https://github.com/ipython/ipython/issues/13554
9393
# TODO ipython 8.5 subtly changes output of test regressions
9494
# see https://ipython.readthedocs.io/en/stable/whatsnew/version8.html#restore-line-numbers-for-input
95-
"ipython!=8.1.0,<8.5",
95+
"ipython!=8.1.0,<8.15",
9696
"ipywidgets>=8",
9797
"jupytext>=1.11.2,<1.15.0",
9898
"matplotlib>=3.5.3,<3.6", # TODO mpl 3.6 subtly changes output of test regressions

tests/test_execute/test_allow_errors_auto.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"traceback": [
2222
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
2323
"\u001b[0;31mException\u001b[0m Traceback (most recent call last)",
24-
"Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
24+
"Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
2525
"\u001b[0;31mException\u001b[0m: oopsie!"
2626
]
2727
}
@@ -47,7 +47,7 @@
4747
"name": "python",
4848
"nbconvert_exporter": "python",
4949
"pygments_lexer": "ipython3",
50-
"version": "3.8.13"
50+
"version": "3.9.7"
5151
},
5252
"test_name": "notebook1"
5353
},

tests/test_execute/test_allow_errors_auto.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<literal_block classes="output traceback" language="ipythontb" xml:space="preserve">
1313
---------------------------------------------------------------------------
1414
Exception Traceback (most recent call last)
15-
Input In [1], in <cell line: 1>()
15+
Cell In[1], line 1
1616
----> 1 raise Exception('oopsie!')
1717

1818
Exception: oopsie!

tests/test_execute/test_allow_errors_cache.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"traceback": [
2222
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
2323
"\u001b[0;31mException\u001b[0m Traceback (most recent call last)",
24-
"Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
24+
"Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
2525
"\u001b[0;31mException\u001b[0m: oopsie!"
2626
]
2727
}
@@ -47,7 +47,7 @@
4747
"name": "python",
4848
"nbconvert_exporter": "python",
4949
"pygments_lexer": "ipython3",
50-
"version": "3.8.13"
50+
"version": "3.9.7"
5151
},
5252
"test_name": "notebook1"
5353
},

tests/test_execute/test_allow_errors_cache.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<literal_block classes="output traceback" language="ipythontb" xml:space="preserve">
1313
---------------------------------------------------------------------------
1414
Exception Traceback (most recent call last)
15-
Input In [1], in <cell line: 1>()
15+
Cell In[1], line 1
1616
----> 1 raise Exception('oopsie!')
1717

1818
Exception: oopsie!

tests/test_execute/test_basic_failing_auto.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"traceback": [
2222
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
2323
"\u001b[0;31mException\u001b[0m Traceback (most recent call last)",
24-
"Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
24+
"Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
2525
"\u001b[0;31mException\u001b[0m: oopsie!"
2626
]
2727
}
@@ -47,7 +47,7 @@
4747
"name": "python",
4848
"nbconvert_exporter": "python",
4949
"pygments_lexer": "ipython3",
50-
"version": "3.8.13"
50+
"version": "3.9.7"
5151
},
5252
"test_name": "notebook1"
5353
},

tests/test_execute/test_basic_failing_auto.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<literal_block classes="output traceback" language="ipythontb" xml:space="preserve">
1313
---------------------------------------------------------------------------
1414
Exception Traceback (most recent call last)
15-
Input In [1], in <cell line: 1>()
15+
Cell In[1], line 1
1616
----> 1 raise Exception('oopsie!')
1717

1818
Exception: oopsie!

tests/test_execute/test_basic_failing_cache.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"traceback": [
2222
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
2323
"\u001b[0;31mException\u001b[0m Traceback (most recent call last)",
24-
"Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<cell line: 1>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
24+
"Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124moopsie!\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
2525
"\u001b[0;31mException\u001b[0m: oopsie!"
2626
]
2727
}
@@ -47,7 +47,7 @@
4747
"name": "python",
4848
"nbconvert_exporter": "python",
4949
"pygments_lexer": "ipython3",
50-
"version": "3.8.13"
50+
"version": "3.9.7"
5151
},
5252
"test_name": "notebook1"
5353
},

tests/test_execute/test_basic_failing_cache.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<literal_block classes="output traceback" language="ipythontb" xml:space="preserve">
1313
---------------------------------------------------------------------------
1414
Exception Traceback (most recent call last)
15-
Input In [1], in <cell line: 1>()
15+
Cell In[1], line 1
1616
----> 1 raise Exception('oopsie!')
1717

1818
Exception: oopsie!

0 commit comments

Comments
 (0)