Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Update dependencies for 5.5.6 #22385

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies:
- pyqt >=5.10,<5.16
- pyqtwebengine >=5.10,<5.16
- python-lsp-black >=2.0.0,<3.0.0
- python-lsp-server >=1.11.0,<1.12.0
- python-lsp-server >=1.12.0,<1.13.0
- pyxdg >=0.26
- pyzmq >=24.0.0
- qdarkstyle >=3.2.0,<3.3.0
Expand Down
4 changes: 2 additions & 2 deletions external-deps/python-lsp-server/.gitrepo

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions external-deps/python-lsp-server/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies:
- pyqt >=5.10,<5.16
- pyqtwebengine >=5.10,<5.16
- python-lsp-black >=2.0.0,<3.0.0
- python-lsp-server >=1.11.0,<1.12.0
- python-lsp-server >=1.12.0,<1.13.0
- pyzmq >=24.0.0
- qdarkstyle >=3.2.0,<3.3.0
- qstylizer >=0.2.2
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def run(self):
'pyls-spyder>=0.4.0',
'pyqt5>=5.10,<5.16',
'pyqtwebengine>=5.10,<5.16',
'python-lsp-server[all]>=1.11.0,<1.12.0',
'python-lsp-server[all]>=1.12.0,<1.13.0',
'pyxdg>=0.26;platform_system=="Linux"',
'pyzmq>=24.0.0',
'qdarkstyle>=3.2.0,<3.3.0',
Expand All @@ -257,7 +257,7 @@ def run(self):
reqs_to_loosen = {'python-lsp-server[all]', 'qtconsole', 'spyder-kernels'}
install_requires = [req for req in install_requires
if req.split(">")[0] not in reqs_to_loosen]
install_requires.append('python-lsp-server[all]>=1.11.0,<1.13.0')
install_requires.append('python-lsp-server[all]>=1.12.0,<1.14.0')
install_requires.append('qtconsole>=5.5.1,<5.7.0')
install_requires.append('spyder-kernels>=2.5.2,<2.7.0')

Expand Down
2 changes: 1 addition & 1 deletion spyder/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
PYGMENTS_REQVER = '>=2.0'
PYLINT_REQVER = '>=3.1,<4'
PYLINT_VENV_REQVER = '>=3.0.2'
PYLSP_REQVER = '>=1.11.0,<1.12.0'
PYLSP_REQVER = '>=1.12.0,<1.13.0'
PYLSP_BLACK_REQVER = '>=2.0.0,<3.0.0'
PYLS_SPYDER_REQVER = '>=0.4.0'
PYXDG_REQVER = '>=0.26'
Expand Down
Loading