pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-dash



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Sep 15 15:36:51 UTC 2024

Modified Files:
        pkgsrc/devel/py-dash: Makefile distinfo

Log Message:
py-dash: updated to 8.0.3

v8.0.3 (2024-07-22)

- Specify explicit type parameters for all type annotations. Thanks DeviousStoat_!

v8.0.2 (2024-07-21)

- Fix typing issue in ``map_`` for compatability with ``chain``. Thanks DeviousStoat_!

v8.0.1 (2024-04-26)

- Fix issue where too many arguments were passed to stdlib's ``operator.attrgetter``, ``operator.itemgetter``, and ``operator.methodcaller`` when instances of those classes were used as callbacks to 
functions like ``map_``, ``filter_``, etc. due to a bug introduced in Python 3.12.3 and 3.11.9 that reported an incorrect signature for those ``operator`` class instances.

v8.0.0 (2024-03-26)

- Add functions (Thanks DeviousStoat_!):

  - ``apply`` (previously named ``thru``)
  - ``apply_catch``
  - ``apply_if``
  - ``apply_if_not_none``
  - ``eq_cmp``
  - ``gt_cmp``
  - ``gte_cmp``
  - ``in_range_cmp``
  - ``is_equal_cmp``
  - ``is_equal_with_cmp``
  - ``is_instance_of_cmp``
  - ``is_match_cmp``
  - ``is_match_with_cmp``
  - ``is_monotone_cmp``
  - ``lt_cmp``
  - ``lte_cmp``

- Rename function ``thru`` to ``apply``. Thanks DeviousStoat_! (**breaking change**)
- Changed ``zip_``, ``unzip``, ``zip_with``, ``unzip_with`` and ``to_pairs`` to accept iterables of tuples instead of lists and return lists of tuples instead of lists of lists. Thanks DeviousStoat_! 
(**breaking change**)
- Fixed bug in ``divide``, ``multiply``, and ``subtract`` that returned the wrong result when ``0`` was used as one of the operation values. Thanks DeviousStoat_!


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-dash/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-dash/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-dash/Makefile
diff -u pkgsrc/devel/py-dash/Makefile:1.13 pkgsrc/devel/py-dash/Makefile:1.14
--- pkgsrc/devel/py-dash/Makefile:1.13  Sun Jan 28 21:18:46 2024
+++ pkgsrc/devel/py-dash/Makefile       Sun Sep 15 15:36:51 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2024/01/28 21:18:46 adam Exp $
+# $NetBSD: Makefile,v 1.14 2024/09/15 15:36:51 adam Exp $
 
-DISTNAME=      pydash-7.0.7
+DISTNAME=      pydash-8.0.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/^py//}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pydash/}
@@ -10,15 +10,13 @@ HOMEPAGE=   https://github.com/dgilland/py
 COMMENT=       Python utility libraries for doing stuff in a functional way
 LICENSE=       mit
 
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=46.:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=61.0.:../../devel/py-setuptools
 TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
-DEPENDS+=      ${PYPKGPREFIX}-typing-extensions>=3.10:../../devel/py-typing-extensions
+DEPENDS+=      ${PYPKGPREFIX}-typing-extensions>=4.6.1:../../devel/py-typing-extensions
 TEST_DEPENDS+= ${PYPKGPREFIX}-invoke-[0-9]*:../../sysutils/py-invoke
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-dash/distinfo
diff -u pkgsrc/devel/py-dash/distinfo:1.11 pkgsrc/devel/py-dash/distinfo:1.12
--- pkgsrc/devel/py-dash/distinfo:1.11  Sun Jan 28 21:18:46 2024
+++ pkgsrc/devel/py-dash/distinfo       Sun Sep 15 15:36:51 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.11 2024/01/28 21:18:46 adam Exp $
+$NetBSD: distinfo,v 1.12 2024/09/15 15:36:51 adam Exp $
 
-BLAKE2s (pydash-7.0.7.tar.gz) = 011c66c414acf8dde3aa6bb0ac1db7dfd2ca14e0ad9d46850d847ba526105bf4
-SHA512 (pydash-7.0.7.tar.gz) = de4003d7925de589ea68386c755eef897a0cc94a5ffad0ed17ff39c1d9d68cdebc382a16d1100fd6d41e475217a51664b46b572d4e83fe8ca7402898da0360ee
-Size (pydash-7.0.7.tar.gz) = 184993 bytes
+BLAKE2s (pydash-8.0.3.tar.gz) = fac7cf0d8adea8206e9f03d13caa12ec25dbea42471769f6ef370224e5608eef
+SHA512 (pydash-8.0.3.tar.gz) = 8a4aefe4ae461c7abce1ed58cadb950bbd31f6f1010b7b21dc17433be0b5f944149d94212b7d325ffb6d7f30bf62406bd68fe53202a846cee2d8dd075e9618ee
+Size (pydash-8.0.3.tar.gz) = 188737 bytes



Home | Main Index | Thread Index | Old Index