pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-tox
Module Name: pkgsrc
Committed By: adam
Date: Thu Oct 23 14:28:49 UTC 2025
Modified Files:
pkgsrc/devel/py-tox: Makefile distinfo
Log Message:
py-tox: updated to 4.31.0
4.31.0
No significant changes.
Bugfixes - 4.30.3
Fix incorrect type annotation in PythonPathPackageWithDeps.__init__() where deps was annotated as Sequence[Package] but should be Sequence[Requirement] to match actual runtime usage
Fix None appearing as the config filename in error output when the user’s default config file is corrupt.
Bugfixes - 4.30.2
Previously, when tox ran in an automatically provisioned environment, it could hang waiting for a PEP 517 build backend if used in conjunction with the --installpkg option. This has been fixed by
properly tearing down the automatically provisioned environment after the tests.
Bugfixes - 4.30.1
Prevent tox from hanging upon exit due to orphaned build threads and subprocesses when the --installpkg option is used with sdist.
Features - 4.30.0
Add __TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CI, which passes through the CI variable if present. This is intended for use by other libraries to detect if tox is running under CI.
Bugfixes - 4.30.0
Makes the error message more clear when pyproject.toml file cannot be loaded or is missing expected keys.
The tox_extend_envs() hook recently added turned out to not work well with tox run. It was fixed internally, not to exhaust the underlying iterator on the first use.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 pkgsrc/devel/py-tox/Makefile
cvs rdiff -u -r1.48 -r1.49 pkgsrc/devel/py-tox/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-tox/Makefile
diff -u pkgsrc/devel/py-tox/Makefile:1.59 pkgsrc/devel/py-tox/Makefile:1.60
--- pkgsrc/devel/py-tox/Makefile:1.59 Sun Aug 10 08:04:43 2025
+++ pkgsrc/devel/py-tox/Makefile Thu Oct 23 14:28:49 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.59 2025/08/10 08:04:43 adam Exp $
+# $NetBSD: Makefile,v 1.60 2025/10/23 14:28:49 adam Exp $
-DISTNAME= tox-4.28.4
+DISTNAME= tox-4.31.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tox/}
@@ -12,15 +12,15 @@ LICENSE= mit
TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-vcs>=0.5:../../devel/py-hatch-vcs
TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.27:../../devel/py-hatchling
-DEPENDS+= ${PYPKGPREFIX}-cachetools>=6.1:../../devel/py-cachetools
+DEPENDS+= ${PYPKGPREFIX}-cachetools>=6.2:../../devel/py-cachetools
DEPENDS+= ${PYPKGPREFIX}-chardet>=5.2:../../converters/py-chardet
DEPENDS+= ${PYPKGPREFIX}-colorama>=0.4.6:../../comms/py-colorama
-DEPENDS+= ${PYPKGPREFIX}-filelock>=3.18:../../devel/py-filelock
+DEPENDS+= ${PYPKGPREFIX}-filelock>=3.20:../../devel/py-filelock
DEPENDS+= ${PYPKGPREFIX}-packaging>=25:../../devel/py-packaging
-DEPENDS+= ${PYPKGPREFIX}-platformdirs>=4.3.8:../../misc/py-platformdirs
+DEPENDS+= ${PYPKGPREFIX}-platformdirs>=4.5:../../misc/py-platformdirs
DEPENDS+= ${PYPKGPREFIX}-pluggy>=1.6:../../devel/py-pluggy
DEPENDS+= ${PYPKGPREFIX}-project-api>=1.9.1:../../devel/py-project-api
-DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.31.2:../../devel/py-virtualenv
+DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.34:../../devel/py-virtualenv
# more unpackaged TEST_DEPENDS from pyproject.toml
# "detect-test-pollution>=1.2",
@@ -28,24 +28,24 @@ DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.
# "diff-cover>=9.2",
# "re-assert>=1.1",
-TEST_DEPENDS+= ${PYPKGPREFIX}-build>=1.2.2:../../devel/py-build
+TEST_DEPENDS+= ${PYPKGPREFIX}-build>=1.3:../../devel/py-build
TEST_DEPENDS+= ${PYPKGPREFIX}-covdefaults>=2.3:../../devel/py-covdefaults
-TEST_DEPENDS+= ${PYPKGPREFIX}-distlib>=0.3.8:../../devel/py-distlib
+TEST_DEPENDS+= ${PYPKGPREFIX}-distlib>=0.4:../../devel/py-distlib
TEST_DEPENDS+= ${PYPKGPREFIX}-flaky>=3.8.1:../../devel/py-flaky
-TEST_DEPENDS+= ${PYPKGPREFIX}-psutil>=6:../../sysutils/py-psutil
-TEST_DEPENDS+= ${PYPKGPREFIX}-setuptools>=75.1:../../devel/py-setuptools
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=5:../../devel/py-test-cov
+TEST_DEPENDS+= ${PYPKGPREFIX}-psutil>=7.1:../../sysutils/py-psutil
+TEST_DEPENDS+= ${PYPKGPREFIX}-setuptools>=80.9:../../devel/py-setuptools
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=7:../../devel/py-test-cov
TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=3.14:../../devel/py-test-mock
TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=3.6.1:../../devel/py-test-xdist
TEST_DEPENDS+= ${PYPKGPREFIX}-time-machine>=2.15:../../time/py-time-machine
-TEST_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.44:../../devel/py-wheel
+TEST_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.45.1:../../devel/py-wheel
USE_LANGUAGES= # none
.include "../../lang/python/pyversion.mk"
.if ${PYTHON_VERSION} < 311
-DEPENDS+= ${PYPKGPREFIX}-tomli>=2.2.1:../../textproc/py-tomli
-DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.14.1:../../devel/py-typing-extensions
+DEPENDS+= ${PYPKGPREFIX}-tomli>=2.3:../../textproc/py-tomli
+DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.15:../../devel/py-typing-extensions
.endif
post-install:
Index: pkgsrc/devel/py-tox/distinfo
diff -u pkgsrc/devel/py-tox/distinfo:1.48 pkgsrc/devel/py-tox/distinfo:1.49
--- pkgsrc/devel/py-tox/distinfo:1.48 Sun Aug 10 08:04:43 2025
+++ pkgsrc/devel/py-tox/distinfo Thu Oct 23 14:28:49 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.48 2025/08/10 08:04:43 adam Exp $
+$NetBSD: distinfo,v 1.49 2025/10/23 14:28:49 adam Exp $
-BLAKE2s (tox-4.28.4.tar.gz) = fbb3b4f31aa4353fa9ebfbb36779602970410052c61552f0a4d4e332643f9503
-SHA512 (tox-4.28.4.tar.gz) = f1f19cb41f54a63036cb32e4f4e8ee281b687f71b8baab9cd0d06287af52e84a75eca99a27b5b450105753c1a31cc9b2a53c8cff8e60878a93275dfaf42c94c0
-Size (tox-4.28.4.tar.gz) = 199692 bytes
+BLAKE2s (tox-4.31.0.tar.gz) = 2c29c47d82321fe6f9d7c6dff9b66901d089e2a2c50bd84e5a5b4d7b2d7cadb4
+SHA512 (tox-4.31.0.tar.gz) = 6e936ca8c4616a3286ce77f8e1eb3ca5c69a4cda0299c395dfbb6e28755a08163e03bc32bfce50eb73ec9f939a2165038a43357679198a06b97343c36e331e97
+Size (tox-4.31.0.tar.gz) = 203294 bytes
Home |
Main Index |
Thread Index |
Old Index