Skip to content
Open
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
7 changes: 7 additions & 0 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ if [ "$USE_CONDA" = "true" ]; then
micromamba install bzip2=1.0.8=h2466b09_7
fi

# Install Pylint 4
micromamba install pylint=4.0

else
# Update pip and setuptools
python -m pip install -U pip setuptools wheel build
Expand All @@ -81,6 +84,10 @@ else
if [ "$OS" = "linux" ]; then
pip install jedi==0.19.1
fi

# Install Pylint 4
pip install pylint==4.0.*

fi

# Install subrepos from source
Expand Down
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies:
- psutil >=5.3
- pygithub >=2.3.0
- pygments >=2.0
- pylint >=3.1,<4
- pylint >=3.1,<4.1.0
- pylint-venv >=3.0.2
- pyls-spyder >=0.4.0
- pyqt >=5.15,<5.16
Expand Down
10 changes: 5 additions & 5 deletions external-deps/python-lsp-server/.gitrepo

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

6 changes: 3 additions & 3 deletions external-deps/python-lsp-server/pyproject.toml

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 @@ -35,7 +35,7 @@ dependencies:
- psutil >=5.3
- pygithub >=2.3.0
- pygments >=2.0
- pylint >=3.1,<4
- pylint >=3.1,<4.1.0
- pylint-venv >=3.0.2
- pyls-spyder >=0.4.0
- pyqt >=5.15,<5.16
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def run(self):
'psutil>=5.3',
'pygithub>=2.3.0',
'pygments>=2.0',
'pylint>=3.1,<4',
'pylint>=3.1,<4.1.0',
'pylint-venv>=3.0.2',
'pyls-spyder>=0.4.0',
'python-lsp-black>=2.0.0,<3.0.0',
Expand Down
2 changes: 1 addition & 1 deletion spyder/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
PSUTIL_REQVER = '>=5.3'
PYGITHUB_REQVER = '>=2.3.0'
PYGMENTS_REQVER = '>=2.0'
PYLINT_REQVER = '>=3.1,<4'
PYLINT_REQVER = '>=3.1,<4.1.0'
PYLINT_VENV_REQVER = '>=3.0.2'
PYLSP_REQVER = '>=1.13.0,<1.14.0'
PYLSP_BLACK_REQVER = '>=2.0.0,<3.0.0'
Expand Down
Loading