pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/py-lsp-server



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sat May  6 17:04:55 UTC 2023

Modified Files:
        pkgsrc/lang/py-lsp-server: Makefile PLIST distinfo
Removed Files:
        pkgsrc/lang/py-lsp-server/patches: patch-pylsp_plugins_flake8__lint.py

Log Message:
py-lsp-server: update to 1.7.2.

# History of changes

## Version 1.7.2 (2023/04/02)

### Issues Closed

- WorkDoneProgress tokens not initialized properly by the server
- yapf formatting fails when pyproject.toml is in the workspace

### Pull Requests Merged

- Add toml dependency for yapf and constrain yapf to be less than 0.32
- Raise upper bound of autopep8
- Bump pydocstyle to 6.3
- Initialize LSP progress token before using it and remove progress for sync plugins

----

## Version 1.7.1 (2023/01/17)

### Issues Closed

- Failed to load hook pylsp_lint: too many values to unpack (expected 3)

### Pull Requests Merged

- Use shlex.split() to split pylint flags
- Improve Jedi file completions for directories
- Include missing Pylint "information" category
- Add top constraint to Pylint and fix constraint for `whatthepatch`
- Fix pydocstyle linting with its 6.2.0 version
- Use `sys.executable` instead of `python` in Pylint plugin

----

## Version 1.7.0 (2022/12/29)

### New features

* Add a new plugin to provide autoimport functionality (disabled by default).
* Add progress reporting.
* Make `jedi_definition` plugin follow definitions to `pyi` files.
* Add support for flake8 version 6.
* Add support for Yapf ignore patterns.
* Add mccabe setting to flake8 plugin.

### Issues Closed

- Is there a configuration option to enable jumping to builtin module stubs
- Autoimport keep throwing exception when delete a line
- `textDocument/documentSymbol` returns empty result for non-existing files
- List of allowed values for pylsp.plugins.pydocstyle.convention in CONFIGURATION.md incorrect
- Progress support
- Auto-import

### Pull Requests Merged

- Don't show signature for modules in hovers
- Change Pylint run to set cwd correctly
- Expose setting to follow builtin and extension definitions to stub files
- Fix Pycodestyle linting with line endings other than LF
- Ensure proper document match to avoid empty outline (Symbols)
- Support Flake8 version 6
- Update Readme with link to python-lsp-ruff and mention to code actions
- Make flake8 respect configuration
- Fix autoimport raising AttributeError in some cases
- Fix the completion of `include_function_objects`
- Report autoimport progress
- Fix symbols for non-existing (unsaved) files
- Fix autoimport plugin not being disabled by default
- Update outdated username in docs
- Update allowed values for pydocstyle convention in CONFIGURATION.md
- Fix Debian package name
- Add progress reporting
- Add a plugin to provide autoimport functionality
- Add mccabe setting to flake8
- Add support for Yapf ignore patterns

----

## Version 1.6.0 (2022/11/02)

### New features

* Migrate to MarkupContent and convert docstrings to Markdown by default.
* Add support for flake8 version 5.
* Add function objects to Jedi completions.
* Don't include class and functions objects by default in Jedi completions.

### Issues Closed

- Completion result have "typeParameter" duplicates
- Server warns when optional modules do not exist
- Errors in CONFIGURATION.md
- Conflict between README and CONFIGURATION
- Add alternative ways to install python-lsp-server
- Add function objects to completions
- `Failed to load hook pylsp_completions: 'NoneType' object has no attribute 'type'` when working with Numpy 1.23
- Consider using docstring_to_markdown for markdown hover and documentation
- Migrate from deprecated MarkedString to MarkupContent

### Pull Requests Merged

- Don't include class objects by default in completions
- Improve how Jedi handles Numpy
- Make default for `include_function_objects` false
- Include params only for classes and functions
- Update the configuration schema for consistency
- Prefer info log message for missing optional modules
- Fix options not being passed to yapf format
- PR: Include all symbols that Jedi reports as declared in a file when `add_import_symbols` is `False`
- Fix pylint message in tests
- Add support for flake8 version 5
- Include traceback when plugin fails to load
- Add more installation instructions to Readme
- Add support for including function objects
- Remove redundant wheel dep from pyproject.toml
- Update release instructions to use new build mechanism
- Migrate to MarkupContent and convert docstrings to Markdown

----

## Version 1.5.0 (2022/07/10)

### New features

* Add `DiagnosticTag` tags for Pylint, Pycodestyle, and Flake8 plugins.
* Add support to connect to the server through websockets.
* Allow multiple per-file-ignores for the same pattern in Flake8 plugin.
* Parse YAPF diffs into TextEdits.
* Add support for LSP formatting `options` parameter.

### Issues Closed

- Flake8 reports wrong severity level for code Fxxx
- Flake8 reports wrong severity level for E999
- Add .flake8 to the discovery paths
- Rope completions enabled or disabled by default
- Please add basic usage documentation
- Add `DiagnosticTag` tags for pylint, pycodestyle, and flake8
- Flake8 plugins issues
- Websockets built-in support

### Pull Requests Merged

- Report Flake8 errors with Error severity level
- Fix documentation for location of Flake8 configuration files
- Use Numpy less than 1.23 in our tests
- Add `DiagnosticTag` support
- Improve schema type compliance, improve CONFIGURATION.md
- Add autopep8.enabled to the configuration schema
- Change severity level for flake8 errors
- Remove preload module from Readme
- Allow multiple per-file-ignores for the same pattern in flake8 plugin
- Remove reference to pyls-flake8 in Readme
- Restore the copyright headers in `setup.cfg` and `pyproject.toml`
- Match rope_completions setting documentation with reality
- Move the project metadata into `PEP 621`-compliant `pyproject.toml`
- Add plugins for pylint and flake8 to readme
- Mention `pylsp` command in README
- Fix section that was misplaced in changelog
- Parse YAPF diffs into TextEdits (instead of sending the full doc)
- Add support for LSP formatting `options` parameter
- Add web sockets support

----

## Version 1.4.1 (2022/03/27)

### Pull Requests Merged

- Fix Yapf formatting with CRLF line endings
- Improved documentation regarding configuration

----

## Version 1.4.0 (2022/03/11)

### New features

* Support pycodestyle indent-size option
* Add `DiagnosticTag` constants from LSP 3.15
* Drop support for Python 3.6

### Issues Closed

- Plugin crash crashes whole diagnostic
- README.md: Windows users trying to install the *extras* in `cmd.exe` need to use double quotes instead of single quotes
- C extensions printing on import break pylint diagnostics
- Still shows diagnostics on closed files
- Use git-based versioning

### Pull Requests Merged

- Clear diagnostics when closing documents
- Update single quotes to double quotes for install command examples
- Prevent third-party plugins with faulty hooks to crash the server
- Prevent faulty third-party plugins to crash the server
- Fix Autopep8 and Yapf formatting with CR line endings
- Fix pygame greeting breaking pylint diagnostics
- Add `DiagnosticTag` constants from LSP 3.15
- Support pycodestyle indent-size option
- Make pylint test Python version independent
- Add license info to `setup.py` so it will show up in wheel installs
- Update Python base version to 3.7+
- Move the package metadata from setup.py to setup.cfg

----

## Version 1.3.3 (2021-12-13)

### Issues Closed

- Resolving completion triggers an error

### Pull Requests Merged

- Fix test_syntax_error_pylint_py3 for Python 3.10
- Fix error when resolving completion items for Rope

----

## Version 1.3.2 (2021-11-25)

### Issues Closed

- Error on triggering completions in import context

### Pull Requests Merged

- Fix formatting a log message

----

## Version 1.3.1 (2021-11-22)

### Pull Requests Merged

- Fix tests for Jedi 0.18.1

----

## Version 1.3.0 (2021-11-22)

### New features

* Create a cache for code snippets to speed up completions.

### Important changes

* Option `jedi_completion.resolve_at_most_labels` was renamed to `jedi_completion.resolve_at_most`
  because now it controls how many labels and snippets will be resolved per request.
* Option `jedi_completion.cache_labels_for` was renamed to `jedi_completion.cache_for` because now
  it controls the modules for which labels and snippets should be cached.
* Update requirements on Pylint, flake8, pycodestyle, pyflakes and autopep8.

### Pull Requests Merged

- Fix another test with Python 3.10
- Use sys.executable in flake8 plugin to make tests pass on systems that don't provide a python link
- Fix test with Python 3.10
- Update requirements on flake8 and its dependencies
- Adjust readme to pylsp-mypy rename
- Unpin Pylint
- Create a cache for snippets


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/py-lsp-server/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/py-lsp-server/PLIST \
    pkgsrc/lang/py-lsp-server/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/lang/py-lsp-server/patches/patch-pylsp_plugins_flake8__lint.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/py-lsp-server/Makefile
diff -u pkgsrc/lang/py-lsp-server/Makefile:1.6 pkgsrc/lang/py-lsp-server/Makefile:1.7
--- pkgsrc/lang/py-lsp-server/Makefile:1.6      Sun May 15 10:05:15 2022
+++ pkgsrc/lang/py-lsp-server/Makefile  Sat May  6 17:04:55 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2022/05/15 10:05:15 nia Exp $
+# $NetBSD: Makefile,v 1.7 2023/05/06 17:04:55 wiz Exp $
 
-DISTNAME=      python-lsp-server-1.2.4
+DISTNAME=      python-lsp-server-1.7.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/python-//}
-PKGREVISION=   2
 CATEGORIES=    lang python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-lsp-server/}
 
@@ -11,20 +10,32 @@ HOMEPAGE=   https://github.com/python-lsp/
 COMMENT=       Implementation of the Language Server Protocol for Python (python-language-server fork)
 LICENSE=       mit
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+
 DEPENDS+=      ${PYPKGPREFIX}-jedi>=0.17.2:../../editors/py-jedi
 DEPENDS+=      ${PYPKGPREFIX}-lsp-jsonrpc>=1.0.0:../../textproc/py-lsp-jsonrpc
-DEPENDS+=      ${PYPKGPREFIX}-pluggy-[0-9]*:../../devel/py-pluggy
+DEPENDS+=      ${PYPKGPREFIX}-pluggy>=1.0.0:../../devel/py-pluggy
+DEPENDS+=      ${PYPKGPREFIX}-docstring-to-markdown-[0-9]*:../../textproc/py-docstring-to-markdown
 DEPENDS+=      ${PYPKGPREFIX}-ujson>=3.0.0:../../textproc/py-ujson
-DEPENDS+=      ${PYPKGPREFIX}-autopep8-[0-9]*:../../devel/py-autopep8
-DEPENDS+=      ${PYPKGPREFIX}-flake8>=3.8.0:../../devel/py-flake8
-DEPENDS+=      ${PYPKGPREFIX}-mccabe>=0.6.0:../../devel/py-mccabe
-DEPENDS+=      ${PYPKGPREFIX}-codestyle>=2.7.0:../../devel/py-codestyle
-DEPENDS+=      ${PYPKGPREFIX}-docstyle>=2.0.0:../../devel/py-docstyle
-DEPENDS+=      ${PYPKGPREFIX}-flakes>=2.3.0:../../devel/py-flakes
+DEPENDS+=      ${PYPKGPREFIX}-setuptools>=39.0.0:../../devel/py-setuptools
+
+# optional dependencies
+DEPENDS+=      ${PYPKGPREFIX}-autopep8>=1.6.0:../../devel/py-autopep8
+DEPENDS+=      ${PYPKGPREFIX}-flake8>=5.0.0:../../devel/py-flake8
+DEPENDS+=      ${PYPKGPREFIX}-mccabe>=0.7.0:../../devel/py-mccabe
+DEPENDS+=      ${PYPKGPREFIX}-codestyle>=2.9.0:../../devel/py-codestyle
+DEPENDS+=      ${PYPKGPREFIX}-docstyle>=6.3.0:../../devel/py-docstyle
+DEPENDS+=      ${PYPKGPREFIX}-flakes>=2.5.0:../../devel/py-flakes
 DEPENDS+=      ${PYPKGPREFIX}-pylint>=2.5.0:../../devel/py-pylint
-DEPENDS+=      ${PYPKGPREFIX}-rope>=0.10.5:../../devel/py-rope
+DEPENDS+=      ${PYPKGPREFIX}-rope>=1.2.0:../../devel/py-rope
+DEPENDS+=      ${PYPKGPREFIX}-toml-[0-9]*:../../textproc/py-toml
+DEPENDS+=      ${PYPKGPREFIX}-whatthepatch>=1.0.2:../../devel/py-whatthepatch
+DEPENDS+=      ${PYPKGPREFIX}-websockets>=10.3:../../www/py-websockets
 DEPENDS+=      ${PYPKGPREFIX}-yapf-[0-9]*:../../devel/py-yapf
 
+TEST_DEPENDS+= ${PYPKGPREFIX}-pylint>=2.5.0:../../devel/py-pylint
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
 TEST_DEPENDS+= ${PYPKGPREFIX}-numpy-[0-9]*:../../math/py-numpy
@@ -50,5 +61,5 @@ post-install:
 do-test:
        cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} pytest-${PYVERSSUFFIX}
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/lang/py-lsp-server/PLIST
diff -u pkgsrc/lang/py-lsp-server/PLIST:1.2 pkgsrc/lang/py-lsp-server/PLIST:1.3
--- pkgsrc/lang/py-lsp-server/PLIST:1.2 Fri Nov  5 13:18:00 2021
+++ pkgsrc/lang/py-lsp-server/PLIST     Sat May  6 17:04:55 2023
@@ -1,113 +1,89 @@
-@comment $NetBSD: PLIST,v 1.2 2021/11/05 13:18:00 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/05/06 17:04:55 wiz Exp $
 bin/pylsp-${PYVERSSUFFIX}
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/pylsp/__init__.py
 ${PYSITELIB}/pylsp/__init__.pyc
-${PYSITELIB}/pylsp/__init__.pyo
 ${PYSITELIB}/pylsp/__main__.py
 ${PYSITELIB}/pylsp/__main__.pyc
-${PYSITELIB}/pylsp/__main__.pyo
 ${PYSITELIB}/pylsp/_utils.py
 ${PYSITELIB}/pylsp/_utils.pyc
-${PYSITELIB}/pylsp/_utils.pyo
 ${PYSITELIB}/pylsp/_version.py
 ${PYSITELIB}/pylsp/_version.pyc
-${PYSITELIB}/pylsp/_version.pyo
 ${PYSITELIB}/pylsp/config/__init__.py
 ${PYSITELIB}/pylsp/config/__init__.pyc
-${PYSITELIB}/pylsp/config/__init__.pyo
 ${PYSITELIB}/pylsp/config/config.py
 ${PYSITELIB}/pylsp/config/config.pyc
-${PYSITELIB}/pylsp/config/config.pyo
 ${PYSITELIB}/pylsp/config/flake8_conf.py
 ${PYSITELIB}/pylsp/config/flake8_conf.pyc
-${PYSITELIB}/pylsp/config/flake8_conf.pyo
 ${PYSITELIB}/pylsp/config/pycodestyle_conf.py
 ${PYSITELIB}/pylsp/config/pycodestyle_conf.pyc
-${PYSITELIB}/pylsp/config/pycodestyle_conf.pyo
 ${PYSITELIB}/pylsp/config/source.py
 ${PYSITELIB}/pylsp/config/source.pyc
-${PYSITELIB}/pylsp/config/source.pyo
 ${PYSITELIB}/pylsp/hookspecs.py
 ${PYSITELIB}/pylsp/hookspecs.pyc
-${PYSITELIB}/pylsp/hookspecs.pyo
 ${PYSITELIB}/pylsp/lsp.py
 ${PYSITELIB}/pylsp/lsp.pyc
-${PYSITELIB}/pylsp/lsp.pyo
 ${PYSITELIB}/pylsp/plugins/__init__.py
 ${PYSITELIB}/pylsp/plugins/__init__.pyc
-${PYSITELIB}/pylsp/plugins/__init__.pyo
+${PYSITELIB}/pylsp/plugins/_resolvers.py
+${PYSITELIB}/pylsp/plugins/_resolvers.pyc
+${PYSITELIB}/pylsp/plugins/_rope_task_handle.py
+${PYSITELIB}/pylsp/plugins/_rope_task_handle.pyc
 ${PYSITELIB}/pylsp/plugins/autopep8_format.py
 ${PYSITELIB}/pylsp/plugins/autopep8_format.pyc
-${PYSITELIB}/pylsp/plugins/autopep8_format.pyo
 ${PYSITELIB}/pylsp/plugins/definition.py
 ${PYSITELIB}/pylsp/plugins/definition.pyc
-${PYSITELIB}/pylsp/plugins/definition.pyo
 ${PYSITELIB}/pylsp/plugins/flake8_lint.py
 ${PYSITELIB}/pylsp/plugins/flake8_lint.pyc
-${PYSITELIB}/pylsp/plugins/flake8_lint.pyo
 ${PYSITELIB}/pylsp/plugins/folding.py
 ${PYSITELIB}/pylsp/plugins/folding.pyc
-${PYSITELIB}/pylsp/plugins/folding.pyo
 ${PYSITELIB}/pylsp/plugins/highlight.py
 ${PYSITELIB}/pylsp/plugins/highlight.pyc
-${PYSITELIB}/pylsp/plugins/highlight.pyo
 ${PYSITELIB}/pylsp/plugins/hover.py
 ${PYSITELIB}/pylsp/plugins/hover.pyc
-${PYSITELIB}/pylsp/plugins/hover.pyo
 ${PYSITELIB}/pylsp/plugins/jedi_completion.py
 ${PYSITELIB}/pylsp/plugins/jedi_completion.pyc
-${PYSITELIB}/pylsp/plugins/jedi_completion.pyo
 ${PYSITELIB}/pylsp/plugins/jedi_rename.py
 ${PYSITELIB}/pylsp/plugins/jedi_rename.pyc
-${PYSITELIB}/pylsp/plugins/jedi_rename.pyo
 ${PYSITELIB}/pylsp/plugins/mccabe_lint.py
 ${PYSITELIB}/pylsp/plugins/mccabe_lint.pyc
-${PYSITELIB}/pylsp/plugins/mccabe_lint.pyo
 ${PYSITELIB}/pylsp/plugins/preload_imports.py
 ${PYSITELIB}/pylsp/plugins/preload_imports.pyc
-${PYSITELIB}/pylsp/plugins/preload_imports.pyo
 ${PYSITELIB}/pylsp/plugins/pycodestyle_lint.py
 ${PYSITELIB}/pylsp/plugins/pycodestyle_lint.pyc
-${PYSITELIB}/pylsp/plugins/pycodestyle_lint.pyo
 ${PYSITELIB}/pylsp/plugins/pydocstyle_lint.py
 ${PYSITELIB}/pylsp/plugins/pydocstyle_lint.pyc
-${PYSITELIB}/pylsp/plugins/pydocstyle_lint.pyo
 ${PYSITELIB}/pylsp/plugins/pyflakes_lint.py
 ${PYSITELIB}/pylsp/plugins/pyflakes_lint.pyc
-${PYSITELIB}/pylsp/plugins/pyflakes_lint.pyo
 ${PYSITELIB}/pylsp/plugins/pylint_lint.py
 ${PYSITELIB}/pylsp/plugins/pylint_lint.pyc
-${PYSITELIB}/pylsp/plugins/pylint_lint.pyo
 ${PYSITELIB}/pylsp/plugins/references.py
 ${PYSITELIB}/pylsp/plugins/references.pyc
-${PYSITELIB}/pylsp/plugins/references.pyo
+${PYSITELIB}/pylsp/plugins/rope_autoimport.py
+${PYSITELIB}/pylsp/plugins/rope_autoimport.pyc
 ${PYSITELIB}/pylsp/plugins/rope_completion.py
 ${PYSITELIB}/pylsp/plugins/rope_completion.pyc
-${PYSITELIB}/pylsp/plugins/rope_completion.pyo
 ${PYSITELIB}/pylsp/plugins/rope_rename.py
 ${PYSITELIB}/pylsp/plugins/rope_rename.pyc
-${PYSITELIB}/pylsp/plugins/rope_rename.pyo
 ${PYSITELIB}/pylsp/plugins/signature.py
 ${PYSITELIB}/pylsp/plugins/signature.pyc
-${PYSITELIB}/pylsp/plugins/signature.pyo
 ${PYSITELIB}/pylsp/plugins/symbols.py
 ${PYSITELIB}/pylsp/plugins/symbols.pyc
-${PYSITELIB}/pylsp/plugins/symbols.pyo
 ${PYSITELIB}/pylsp/plugins/yapf_format.py
 ${PYSITELIB}/pylsp/plugins/yapf_format.pyc
-${PYSITELIB}/pylsp/plugins/yapf_format.pyo
 ${PYSITELIB}/pylsp/python_lsp.py
 ${PYSITELIB}/pylsp/python_lsp.pyc
-${PYSITELIB}/pylsp/python_lsp.pyo
+${PYSITELIB}/pylsp/text_edit.py
+${PYSITELIB}/pylsp/text_edit.pyc
 ${PYSITELIB}/pylsp/uris.py
 ${PYSITELIB}/pylsp/uris.pyc
-${PYSITELIB}/pylsp/uris.pyo
 ${PYSITELIB}/pylsp/workspace.py
 ${PYSITELIB}/pylsp/workspace.pyc
-${PYSITELIB}/pylsp/workspace.pyo
+${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
Index: pkgsrc/lang/py-lsp-server/distinfo
diff -u pkgsrc/lang/py-lsp-server/distinfo:1.2 pkgsrc/lang/py-lsp-server/distinfo:1.3
--- pkgsrc/lang/py-lsp-server/distinfo:1.2      Fri Nov  5 15:58:23 2021
+++ pkgsrc/lang/py-lsp-server/distinfo  Sat May  6 17:04:55 2023
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2021/11/05 15:58:23 wiz Exp $
+$NetBSD: distinfo,v 1.3 2023/05/06 17:04:55 wiz Exp $
 
-BLAKE2s (python-lsp-server-1.2.4.tar.gz) = 573b63907c47a50b0c3c4c257d9d2a75c4bf3af7af2ca9bb9b9a99092a51ba13
-SHA512 (python-lsp-server-1.2.4.tar.gz) = 862d59426c6e7c19f9d3d2766ec5f9ec818d29988ee72cde9553e4b1725fbbe4230ed2f6d7e8d08983c9ef1ced8d5afe42d6751ea529d3d8799c8930b1e10a26
-Size (python-lsp-server-1.2.4.tar.gz) = 62073 bytes
-SHA1 (patch-pylsp_plugins_flake8__lint.py) = 56907a886c2521ebb607654488fb456ae8f6b02c
+BLAKE2s (python-lsp-server-1.7.2.tar.gz) = 3b4f78d41993b14baae4bcbc89e0e65ecfef5863f0a47e333c52cf53c9cf18dc
+SHA512 (python-lsp-server-1.7.2.tar.gz) = aaa31a72391dbf0f6b40ca954cbd2377c4105371a54036d8cbab52ee0360a2400c453d47bbccbe3bea78e3189aa4006aeb7546bd99cad3a8f0bc352a0594e885
+Size (python-lsp-server-1.7.2.tar.gz) = 97050 bytes



Home | Main Index | Thread Index | Old Index