pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-isort
Module Name: pkgsrc
Committed By: wiz
Date: Sun Oct 12 18:07:30 UTC 2025
Modified Files:
pkgsrc/devel/py-isort: Makefile PLIST distinfo
Log Message:
py-isort: update to 7.0.0.
Changes
💥 Breaking Changes
Drop support for Python 3.9 (#2430) @DanielNoord
🚀 Features
Show absolute paths in skipped file messages (#2416) @pranlawate
🪲 Fixes
Some fixes for Python 3.14 (#2433) @DanielNoord
Test on 3.14 and fix any bugs (#2425) @DanielNoord
Update CHANGELOG.md + Fix Formatting and Grammar (#2419) @lukbrew25
Fix output of hanging indent for long lines with noqa (#2407) @matan1008
👷 Continuous Integration
Format with ruff instead of black (#2432) @DanielNoord
Target 3.10 for ruff (#2431) @DanielNoord
Update development dependencies to latest version (#2426) @DanielNoord
docs: update pre-commit examples to version 6.1.0 (#2413) @pranlawate
Small cleanup for developer environment (#2418) @DanielNoord
📦 Dependencies
Bump actions/setup-python from 5 to 6 in the github-actions group (#2411) @dependabot[bot]
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/py-isort/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-isort/PLIST
cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/py-isort/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-isort/Makefile
diff -u pkgsrc/devel/py-isort/Makefile:1.32 pkgsrc/devel/py-isort/Makefile:1.33
--- pkgsrc/devel/py-isort/Makefile:1.32 Thu Oct 9 08:07:27 2025
+++ pkgsrc/devel/py-isort/Makefile Sun Oct 12 18:07:30 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.32 2025/10/09 08:07:27 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2025/10/12 18:07:30 wiz Exp $
-DISTNAME= isort-6.1.0
+DISTNAME= isort-7.0.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=i/isort/}
@@ -14,6 +14,7 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-vcs>
TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>0:../../devel/py-hatchling
TEST_DEPENDS+= git-base-[0-9]*:../../devel/git-base
TEST_DEPENDS+= ${PYPKGPREFIX}-black>=0:../../textproc/py-black
+TEST_DEPENDS+= ${PYPKGPREFIX}-colorama>=0:../../comms/py-colorama
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=6.10.1:../../devel/py-hypothesis
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesmith>=0.1.3:../../devel/py-hypothesmith
TEST_DEPENDS+= ${PYPKGPREFIX}-lama>=7.7:../../devel/py-lama
@@ -22,10 +23,11 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-toml>=0.10
USE_LANGUAGES= # none
-# 18 failed, 544 passed, 1 skipped, 1 xfailed, 70 warnings, 3 errors
# for testing:
-#ALLOW_NETWORK_ACCESS= yes
-# 9 failed, 553 passed, 1 skipped, 1 xfailed, 69 warnings, 3 errors
+.if make(test)
+ALLOW_NETWORK_ACCESS= yes
+.endif
+# 9 failed, 553 passed, 1 skipped, 1 xfailed, 558 warnings, 2 errors
post-install:
.for bin in isort isort-identify-imports
Index: pkgsrc/devel/py-isort/PLIST
diff -u pkgsrc/devel/py-isort/PLIST:1.11 pkgsrc/devel/py-isort/PLIST:1.12
--- pkgsrc/devel/py-isort/PLIST:1.11 Sun Feb 2 16:16:34 2025
+++ pkgsrc/devel/py-isort/PLIST Sun Oct 12 18:07:30 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2025/02/02 16:16:34 wiz Exp $
+@comment $NetBSD: PLIST,v 1.12 2025/10/12 18:07:30 wiz Exp $
bin/isort-${PYVERSSUFFIX}
bin/isort-identify-imports-${PYVERSSUFFIX}
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -81,9 +81,6 @@ ${PYSITELIB}/isort/profiles.py
${PYSITELIB}/isort/profiles.pyc
${PYSITELIB}/isort/profiles.pyo
${PYSITELIB}/isort/py.typed
-${PYSITELIB}/isort/pylama_isort.py
-${PYSITELIB}/isort/pylama_isort.pyc
-${PYSITELIB}/isort/pylama_isort.pyo
${PYSITELIB}/isort/sections.py
${PYSITELIB}/isort/sections.pyc
${PYSITELIB}/isort/sections.pyo
@@ -123,6 +120,9 @@ ${PYSITELIB}/isort/stdlibs/py312.pyo
${PYSITELIB}/isort/stdlibs/py313.py
${PYSITELIB}/isort/stdlibs/py313.pyc
${PYSITELIB}/isort/stdlibs/py313.pyo
+${PYSITELIB}/isort/stdlibs/py314.py
+${PYSITELIB}/isort/stdlibs/py314.pyc
+${PYSITELIB}/isort/stdlibs/py314.pyo
${PYSITELIB}/isort/stdlibs/py36.py
${PYSITELIB}/isort/stdlibs/py36.pyc
${PYSITELIB}/isort/stdlibs/py36.pyo
Index: pkgsrc/devel/py-isort/distinfo
diff -u pkgsrc/devel/py-isort/distinfo:1.30 pkgsrc/devel/py-isort/distinfo:1.31
--- pkgsrc/devel/py-isort/distinfo:1.30 Fri Oct 3 09:30:03 2025
+++ pkgsrc/devel/py-isort/distinfo Sun Oct 12 18:07:30 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.30 2025/10/03 09:30:03 adam Exp $
+$NetBSD: distinfo,v 1.31 2025/10/12 18:07:30 wiz Exp $
-BLAKE2s (isort-6.1.0.tar.gz) = 0e83b13cc43ab0e823347e4e7c205fe0b37d787e7401353efd596388153f2730
-SHA512 (isort-6.1.0.tar.gz) = 80f48e82de1bfe99282de42d594adc4128d7cbdc9fa36bb5e333e5c28f46290d394ba56ec5899187ef734f33725b4ce30c988f1baf66150b92a144c563982062
-Size (isort-6.1.0.tar.gz) = 824325 bytes
+BLAKE2s (isort-7.0.0.tar.gz) = 3610896d5a9373d8b9be04bef6a4d58ef8f2caae7a440d364aa1194d86b99a33
+SHA512 (isort-7.0.0.tar.gz) = 10078b1af89af6fbaefa88f61c80a94723b2633f9fd209d09e419d55a7c3013f0e8ded262cc7addc7cdce40930fd0bb2451e6ac3935d1c96ce42ac5cef041e44
+Size (isort-7.0.0.tar.gz) = 805049 bytes
Home |
Main Index |
Thread Index |
Old Index