From ed55e9fdc22f69f8e7d360e04ef3dc803c84d939 Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Mon, 30 Jan 2023 20:31:59 +0800 Subject: [PATCH] devel/py-pyproject-fmt: Update to 0.4.1 Changes: https://github.com/tox-dev/pyproject-fmt/releases --- devel/py-pyproject-fmt/Makefile | 6 +++--- devel/py-pyproject-fmt/distinfo | 6 +++--- devel/py-pyproject-fmt/files/setup.py | 21 ++++++++++----------- 3 files changed, 16 insertions(+), 17 deletions(-) diff --git a/devel/py-pyproject-fmt/Makefile b/devel/py-pyproject-fmt/Makefile index 9d3d799942c87..8cd4352f5311b 100644 --- a/devel/py-pyproject-fmt/Makefile +++ b/devel/py-pyproject-fmt/Makefile @@ -1,5 +1,5 @@ PORTNAME= pyproject-fmt -PORTVERSION= 0.3.5 +PORTVERSION= 0.4.1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=21.3:devel/py-packaging@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.11.3:textproc/py-tomlkit@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.11.6:textproc/py-tomlkit@${PY_FLAVOR} USES= python:3.7+ USE_PYTHON= autoplist concurrent distutils @@ -23,7 +23,7 @@ NO_ARCH= yes .include .if ${PYTHON_REL} < 30800 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.3:devel/py-typing-extensions@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.4:devel/py-typing-extensions@${PY_FLAVOR} .endif post-patch: diff --git a/devel/py-pyproject-fmt/distinfo b/devel/py-pyproject-fmt/distinfo index 63ec6cc7e76b7..f085bf7cb509a 100644 --- a/devel/py-pyproject-fmt/distinfo +++ b/devel/py-pyproject-fmt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1661599271 -SHA256 (pyproject_fmt-0.3.5.tar.gz) = d49028349cb4f5b7dbb8a414b9ff8f5018b7f2f0238703cc5b8cf811a099d407 -SIZE (pyproject_fmt-0.3.5.tar.gz) = 9521 +TIMESTAMP = 1674589874 +SHA256 (pyproject_fmt-0.4.1.tar.gz) = b90cf0dfee7435fd68503ee578cb30b898330d3eb2f1a5428e15c127a2e3841f +SIZE (pyproject_fmt-0.4.1.tar.gz) = 9705 diff --git a/devel/py-pyproject-fmt/files/setup.py b/devel/py-pyproject-fmt/files/setup.py index c6995e6fedfc9..6ec5ab87afd5f 100644 --- a/devel/py-pyproject-fmt/files/setup.py +++ b/devel/py-pyproject-fmt/files/setup.py @@ -16,25 +16,26 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], install_requires=[ 'packaging>=21.3', - 'tomlkit>=0.11.3', - 'typing-extensions>=4.3; python_version < "3.8"', + 'tomlkit>=0.11.6', + 'typing-extensions>=4.4; python_version < "3.8"', ], extras_require={ 'docs': [ - 'furo>=2022.6.21', + 'furo>=2022.9.29', 'sphinx-argparse-cli>=1.10', - 'sphinx-autodoc-typehints>=1.19.2', + 'sphinx-autodoc-typehints>=1.19.4', 'sphinx-copybutton>=0.5', - 'sphinx>=5.1.1', + 'sphinx>=5.3', ], 'test': [ 'covdefaults>=2.2', - 'pytest-cov>=3', - 'pytest-mock>=3.8.2', - 'pytest>=7.1.2', + 'pytest-cov>=4', + 'pytest-mock>=3.10', + 'pytest>=7.2', ], }, entry_points={ @@ -46,7 +47,5 @@ 'pyproject_fmt', 'pyproject_fmt.formatter', ], - package_dir={ - '': 'src' - }, + package_dir={'': 'src'}, )