./graphics/py-cycler, Composable style cycles

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.12.1, Package name: py311-cycler-0.12.1, Maintainer: pkgsrc-users

Composable cycle class used for constructing style-cycles.


Required to run:
[devel/py-setuptools] [lang/python27] [lang/py-six]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 7.437 KB

Version history: (Expand)


CVS history: (Expand)


   2023-11-05 01:42:06 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
py-cycler: update to 0.12.1.

The major new feature in this release is the addition of type hints.
Furthermore, the minimum supported version of Python is now 3.8.
   2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595)
Log message:
*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
   2021-10-29 10:37:04 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-cycler: updated to 0.11.0

v0.11
This is the first Cycler feature release in some years. New features include:

Added Cycler.by_key, which produces values by key
Added Cycler.__contains__, which adds support for in checks
Wheels now includes the LICENSE file
The sdist now includes the LICENSE
Cycler no longer supports Python 2. Supported versions of Python are 3.6 and above.
   2021-10-26 12:47:26 by Nia Alarie | Files touched by this commit (800)
Log message:
graphics: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes
   2021-10-07 16:13:27 by Nia Alarie | Files touched by this commit (800)
Log message:
graphics: Remove SHA1 hashes for distfiles
   2016-08-18 13:51:45 by Richard PALO | Files touched by this commit (2)
Log message:
To fix the duplication, keep the graphics/ version of py-cycler akin to
py-matplotlib and remove the package found in devel/.  Since the latter
picked the tarball up from pypi which has a different checksum than the
github project, use DIST_SUBDIR and bump PKGREVISION.

Thanks markd@!
   2016-08-17 15:38:28 by Richard PALO | Files touched by this commit (4)
Log message:
add cycler-0.10.0
A composable cycle class used for constructing style-cycles.

Feature release for cycler. This release includes a number of new
features:

    Cycler objecst learned to generate an itertools.cycle by calling them,
        a-la a generator.
    Cycler objects learned to change the name of a key via the new
        .change_key(old_key, new_key) method.
    Cycler objects learned how to compare each other and determine if they
        are equal or not (==).
    Cycler objects learned how to join another Cycler to be concatenated
        into a single longer Cycler via concat method of function. A.concat(B)
        or concat(A, B).
    The cycler factory function learned to construct a complex Cycler from
        iterables provided as keyword arguments.
    Cycler objects learn do show their insides with the by_key method which
        returns a dictionary of lists (instead of an iterable of dictionaries).