diff options
author | 2025-05-08 14:02:12 -0700 | |
---|---|---|
committer | 2025-05-10 12:08:52 +0700 | |
commit | 8d2dc09cc7efe3b033be79b722aceb8b303de788 (patch) | |
tree | c28eaafede2a3a2d41f8c6b5271c12d3a6c14c3a | |
parent | 8dab22931b3650e8a3a268ccce52ae253347de1c (diff) | |
download | slackbuilds-8d2dc09cc7efe3b033be79b722aceb8b303de788.tar.gz slackbuilds-8d2dc09cc7efe3b033be79b722aceb8b303de788.tar.xz |
python/python3-lsp-server: Fix flake8 version constraints.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/python3-lsp-server/python3-lsp-server.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python3-lsp-server/python3-lsp-server.SlackBuild b/python/python3-lsp-server/python3-lsp-server.SlackBuild index 66d3f22736..6e62aa040b 100644 --- a/python/python3-lsp-server/python3-lsp-server.SlackBuild +++ b/python/python3-lsp-server/python3-lsp-server.SlackBuild @@ -66,7 +66,7 @@ find -L . \ # Workarounds for spyder sed -i "s|autopep8>=1.6.0,<1.7.0|autopep8>=1.6.0|" -i pyproject.toml -sed -i "s|flake8>=5.0.0,<5.1.0|flake8>=5.1.0|" -i pyproject.toml +sed -i "s|flake8>=5.0.0,<5.1.0|flake8>=5.0.0|" -i pyproject.toml sed -i "s|jedi>=0.17.2,<0.19.0|jedi>=0.17.2|" -i pyproject.toml sed -i "s|pycodestyle>=2.9.0,<2.10.0|pycodestyle>=2.9.0|" -i pyproject.toml sed -i "s|pyflakes>=2.5.0,<2.6.0|pyflakes>=2.5.0|" -i pyproject.toml |