git: 96441ec3c5c1 - main - devel/py-pyproject-fmt: Update to 0.3.5
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 31 Aug 2022 11:43:59 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=96441ec3c5c1e998c5eb45cb5239b944192df399 commit 96441ec3c5c1e998c5eb45cb5239b944192df399 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2022-08-31 11:23:31 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2022-08-31 11:41:07 +0000 devel/py-pyproject-fmt: Update to 0.3.5 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 | 20 ++++++++++---------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/devel/py-pyproject-fmt/Makefile b/devel/py-pyproject-fmt/Makefile index ed722b2780a1..5b0b1e0e0c59 100644 --- a/devel/py-pyproject-fmt/Makefile +++ b/devel/py-pyproject-fmt/Makefile @@ -1,5 +1,5 @@ PORTNAME= pyproject-fmt -PORTVERSION= 0.3.4 +PORTVERSION= 0.3.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=21.3:devel/py-packaging@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.10:textproc/py-tomlkit@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.11.3:textproc/py-tomlkit@${PY_FLAVOR} USES= python:3.7+ USE_PYTHON= autoplist concurrent distutils @@ -22,7 +22,7 @@ NO_ARCH= yes .include <bsd.port.pre.mk> .if ${PYTHON_REL} < 30800 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.10:devel/py-typing-extensions@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.3:devel/py-typing-extensions@${PY_FLAVOR} .endif post-patch: diff --git a/devel/py-pyproject-fmt/distinfo b/devel/py-pyproject-fmt/distinfo index f6ee3c355310..63ec6cc7e76b 100644 --- a/devel/py-pyproject-fmt/distinfo +++ b/devel/py-pyproject-fmt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1656522294 -SHA256 (pyproject_fmt-0.3.4.tar.gz) = b8de884847f27734110d704360f959a2737aa0c527bfad2fae090449f5fcda26 -SIZE (pyproject_fmt-0.3.4.tar.gz) = 9737 +TIMESTAMP = 1661599271 +SHA256 (pyproject_fmt-0.3.5.tar.gz) = d49028349cb4f5b7dbb8a414b9ff8f5018b7f2f0238703cc5b8cf811a099d407 +SIZE (pyproject_fmt-0.3.5.tar.gz) = 9521 diff --git a/devel/py-pyproject-fmt/files/setup.py b/devel/py-pyproject-fmt/files/setup.py index d2292ff1044a..c6995e6fedfc 100644 --- a/devel/py-pyproject-fmt/files/setup.py +++ b/devel/py-pyproject-fmt/files/setup.py @@ -12,29 +12,29 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], install_requires=[ 'packaging>=21.3', - 'tomlkit>=0.10', - 'typing-extensions>=3.10; python_version < "3.8"', + 'tomlkit>=0.11.3', + 'typing-extensions>=4.3; python_version < "3.8"', ], extras_require={ 'docs': [ - 'furo>=2022.1.2b11', - 'sphinx-argparse-cli>=1.8', - 'sphinx-autodoc-typehints>=1.17', + 'furo>=2022.6.21', + 'sphinx-argparse-cli>=1.10', + 'sphinx-autodoc-typehints>=1.19.2', 'sphinx-copybutton>=0.5', - 'sphinx>=4.4', + 'sphinx>=5.1.1', ], 'test': [ - 'covdefaults>=2', + 'covdefaults>=2.2', 'pytest-cov>=3', - 'pytest-mock>=3.7', - 'pytest>=7', + 'pytest-mock>=3.8.2', + 'pytest>=7.1.2', ], }, entry_points={