Skip to content

Commit 8beb636

Browse files
committed
Update version constraints of spyder-kernels
1 parent 1ad4c82 commit 8beb636

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def run(self):
233233
'qtconsole>=4.6.0',
234234
'qtpy>=1.5.0',
235235
'sphinx>=0.6.6',
236-
'spyder-kernels>=1.8.1,<2.0.0',
236+
'spyder-kernels>=1.9.0,<1.10.0',
237237
'watchdog',
238238
]
239239

spyder/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
QTPY_REQVER = '>=1.5.0'
5757
RTREE_REQVER = '>=0.8.3'
5858
SPHINX_REQVER = '>=0.6.6'
59-
SPYDER_KERNELS_REQVER = '>=1.8.1;<2.0.0'
59+
SPYDER_KERNELS_REQVER = '>=1.9.0;<1.10.0'
6060
WATCHDOG_REQVER = None
6161

6262

spyder/plugins/ipythonconsole/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,12 +680,12 @@ def create_new_client(self, give_focus=True, filename='', is_cython=False,
680680
has_spyder_kernels = programs.is_module_installed(
681681
'spyder_kernels',
682682
interpreter=pyexec,
683-
version='>=1.8.0;<2.0.0')
683+
version='>=1.9.0;<1.10.0')
684684
if not has_spyder_kernels and not running_under_pytest():
685685
client.show_kernel_error(
686686
_("Your Python environment or installation doesn't have "
687687
"the <tt>spyder-kernels</tt> module or the right "
688-
"version of it installed (>= 1.8.0 and < 2.0.0). "
688+
"version of it installed (>= 1.9.0 and < 1.10.0). "
689689
"Without this module is not possible for Spyder to "
690690
"create a console for you.<br><br>"
691691
"You can install it by running in a system terminal:"

0 commit comments

Comments
 (0)