Skip to content

Commit 075df68

Browse files
committed
Update required versions of spyder-kernels and PyLS
1 parent 0c18177 commit 075df68

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,15 +224,15 @@ def run(self):
224224
'pylint>=1.0',
225225
'pyqt5<5.13;python_version>="3"',
226226
'pyqtwebengine<5.13;python_version>="3"',
227-
'python-language-server[all]>=0.34.0,<0.35.0',
227+
'python-language-server[all]>=0.34.0,<1.0.0',
228228
'pyxdg>=0.26;platform_system=="Linux"',
229229
'pyzmq>=17',
230230
'qdarkstyle>=2.8',
231231
'qtawesome>=0.5.7',
232232
'qtconsole>=4.6.0',
233233
'qtpy>=1.5.0',
234234
'sphinx>=0.6.6',
235-
'spyder-kernels>=1.9.1,<1.10.0',
235+
'spyder-kernels>=1.9.2,<1.10.0',
236236
'watchdog',
237237
]
238238

spyder/dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
PSUTIL_REQVER = '>=5.3'
4848
PYGMENTS_REQVER = '>=2.0'
4949
PYLINT_REQVER = '>=1.0'
50-
PYLS_REQVER = '>=0.34.0;<0.35.0'
50+
PYLS_REQVER = '>=0.34.0;<1.0.0'
5151
PYXDG_REQVER = '>=0.26'
5252
PYZMQ_REQVER = '>=17'
5353
QDARKSTYLE_REQVER = '>=2.8'
@@ -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.9.1;<1.10.0'
59+
SPYDER_KERNELS_REQVER = '>=1.9.2;<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
@@ -690,12 +690,12 @@ def create_new_client(self, give_focus=True, filename='', is_cython=False,
690690
has_spyder_kernels = programs.is_module_installed(
691691
'spyder_kernels',
692692
interpreter=pyexec,
693-
version='>=1.9.1;<1.10.0')
693+
version='>=1.9.2;<1.10.0')
694694
if not has_spyder_kernels and not running_under_pytest():
695695
client.show_kernel_error(
696696
_("Your Python environment or installation doesn't have "
697697
"the <tt>spyder-kernels</tt> module or the right "
698-
"version of it installed (>= 1.9.1 and < 1.10.0). "
698+
"version of it installed (>= 1.9.2 and < 1.10.0). "
699699
"Without this module is not possible for Spyder to "
700700
"create a console for you.<br><br>"
701701
"You can install it by running in a system terminal:"

0 commit comments

Comments
 (0)