Date: Tue, 23 Jan 2024 18:17:29 GMT From: Rainer Hurling <rhurlin@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 4dc08fa86647 - main - textproc/py-python-lsp-server: Update 1.10.0 Message-ID: <202401231817.40NIHTa7027645@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rhurlin: URL: https://cgit.FreeBSD.org/ports/commit/?id=4dc08fa86647eb044f3df06864b1182a61b17f58 commit 4dc08fa86647eb044f3df06864b1182a61b17f58 Author: Rainer Hurling <rhurlin@FreeBSD.org> AuthorDate: 2024-01-23 18:13:47 +0000 Commit: Rainer Hurling <rhurlin@FreeBSD.org> CommitDate: 2024-01-23 18:13:47 +0000 textproc/py-python-lsp-server: Update 1.10.0 - Add support for notebook document completions - Add support for flake8 version 7 Changelog: https://github.com/python-lsp/python-lsp-server/blob/develop/CHANGELOG.md#version-1100-20240121 Reported by: Repology --- textproc/py-python-lsp-server/Makefile | 2 +- textproc/py-python-lsp-server/distinfo | 6 ++--- .../files/patch-pyproject.toml | 26 ++++++++++++---------- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/textproc/py-python-lsp-server/Makefile b/textproc/py-python-lsp-server/Makefile index 6002dbf549e6..a31c0b5aacf5 100644 --- a/textproc/py-python-lsp-server/Makefile +++ b/textproc/py-python-lsp-server/Makefile @@ -1,5 +1,5 @@ PORTNAME= python-lsp-server -PORTVERSION= 1.9.0 +PORTVERSION= 1.10.0 CATEGORIES= textproc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-python-lsp-server/distinfo b/textproc/py-python-lsp-server/distinfo index f2543b51284d..49201ed16cf1 100644 --- a/textproc/py-python-lsp-server/distinfo +++ b/textproc/py-python-lsp-server/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699349437 -SHA256 (python-lsp-server-1.9.0.tar.gz) = dc0c8298f0222fd66a52aa3170f3a5c8fe3021007a02098bb72f7fd8df353d13 -SIZE (python-lsp-server-1.9.0.tar.gz) = 111176 +TIMESTAMP = 1706028860 +SHA256 (python-lsp-server-1.10.0.tar.gz) = 0c9a52dcc16cd0562404d529d50a03372db1ea6fb8dfcc3792b3265441c814f4 +SIZE (python-lsp-server-1.10.0.tar.gz) = 112917 diff --git a/textproc/py-python-lsp-server/files/patch-pyproject.toml b/textproc/py-python-lsp-server/files/patch-pyproject.toml index e542f2a2aa7f..965448699ce7 100644 --- a/textproc/py-python-lsp-server/files/patch-pyproject.toml +++ b/textproc/py-python-lsp-server/files/patch-pyproject.toml @@ -1,16 +1,19 @@ ---- pyproject.toml.orig 2023-11-06 16:21:32 UTC +--- pyproject.toml.orig 2024-01-21 15:55:09 UTC +++ pyproject.toml @@ -27,29 +27,29 @@ all = [ [project.optional-dependencies] all = [ - "autopep8>=2.0.4,<2.1.0", -- "flake8>=6.1.0,<7", +- "flake8>=7,<8", - "mccabe>=0.7.0,<0.8.0", - "pycodestyle>=2.11.0,<2.12.0", - "pydocstyle>=6.3.0,<6.4.0", -- "pyflakes>=3.1.0,<3.2.0", +- "pyflakes>=3.2.0,<3.3.0", - "pylint>=2.5.0,<3.1", +- "rope>=1.11.0", +- "yapf>=0.33.0", +- "whatthepatch>=1.0.2,<2.0.0" + "autopep8>=2.0.4", + "flake8>=6.1.0", + "mccabe>=0.7.0", @@ -18,28 +21,27 @@ + "pydocstyle>=6.3.0", + "pyflakes>=3.1.0", + "pylint>=2.5.0", - "rope>1.2.0", -- "yapf>=0.33.0", -- "whatthepatch>=1.0.2,<2.0.0" ++ "rope>=1.7.0", + "yapf>=0.32.0", + "whatthepatch>=1.0.2" ] --autopep8 = ["autopep8>=1.6.0,<2.1.0"] --flake8 = ["flake8>=6.1.0,<7"] +-autopep8 = ["autopep8>=2.0.4,<2.1.0"] +-flake8 = ["flake8>=7,<8"] -mccabe = ["mccabe>=0.7.0,<0.8.0"] -pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"] -pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"] --pyflakes = ["pyflakes>=3.1.0,<3.2.0"] +-pyflakes = ["pyflakes>=3.2.0,<3.3.0"] -pylint = ["pylint>=2.5.0,<3.1"] -+autopep8 = ["autopep8>=1.6.0"] +-rope = ["rope>=1.11.0"] +-yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"] ++autopep8 = ["autopep8>=2.0.4"] +flake8 = ["flake8>=6.1.0"] +mccabe = ["mccabe>=0.7.0"] +pycodestyle = ["pycodestyle>=2.11.0"] +pydocstyle = ["pydocstyle>=6.3.0"] +pyflakes = ["pyflakes>=3.1.0"] +pylint = ["pylint>=2.5.0"] - rope = ["rope>1.2.0"] --yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"] ++rope = ["rope>=1.7.0"] +yapf = ["yapf>=0.32.0", "whatthepatch>=1.0.2"] websockets = ["websockets>=10.3"] test = [
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401231817.40NIHTa7027645>