Up to [cvs.NetBSD.org] / pkgsrc / devel / py-ordered-set
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.10 / (download) - annotate - [select for diffs], Thu Jan 27 08:34:19 2022 UTC (19 months, 4 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
HEAD
Changes since 1.9: +4 -4
lines
Diff to previous 1.9 (colored)
py-ordered-set: updated to 4.1.0 Version 4.1 (January 2022) Packaged using flit. Wheels now exist, and setuptools is no longer required. This package now has a typical package structure, instead of being a single module. The code is in ordered_set/__init__.py instead of ordered_set.py. There is an ordered_set/py.typed so that type checkers know about the types. Use the type aliases SetLike[T] and OrderedSetInitializer[T] to simplify some types. Updated the way overloaded type signatures are written to what MyPy currently expects. Minimum Python version is 3.7.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Oct 26 10:18:43 2021 UTC (22 months, 4 weeks ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
archivers: Replace RMD160 checksums with BLAKE2s checksums All checksums have been double-checked against existing RMD160 and SHA512 hashes Could not be committed due to merge conflict: devel/py-traitlets/distinfo The following distfiles were unfetchable (note: some may be only fetched conditionally): ./devel/pvs/distinfo pvs-3.2-solaris.tgz ./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
Revision 1.8 / (download) - annotate - [select for diffs], Thu Oct 7 13:43:25 2021 UTC (23 months, 2 weeks ago) by nia
Branch: MAIN
Changes since 1.7: +1 -2
lines
Diff to previous 1.7 (colored)
devel: Remove SHA1 hashes for distfiles
Revision 1.7 / (download) - annotate - [select for diffs], Fri Jul 9 18:56:29 2021 UTC (2 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3
Changes since 1.6: +5 -5
lines
Diff to previous 1.6 (colored)
py-ordered-set: updated to 4.0.2 4.0.2: Fix Python 3.5 support
Revision 1.6 / (download) - annotate - [select for diffs], Fri Apr 26 10:02:13 2019 UTC (4 years, 5 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2
Changes since 1.5: +5 -5
lines
Diff to previous 1.5 (colored)
py-ordered-set: updated to 3.1.1 3.1.1: Unknown changes
Revision 1.5 / (download) - annotate - [select for diffs], Mon Dec 3 19:29:05 2018 UTC (4 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4
Changes since 1.4: +5 -5
lines
Diff to previous 1.4 (colored)
py-ordered-set: updated to 3.1 3.1: Unknown changes
Revision 1.4 / (download) - annotate - [select for diffs], Mon Sep 24 09:00:06 2018 UTC (5 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Changes since 1.3: +5 -5
lines
Diff to previous 1.3 (colored)
py-ordered-set: updated to 3.0.2 3.0.2: Bug fixes.
Revision 1.3 / (download) - annotate - [select for diffs], Fri Jul 13 06:24:25 2018 UTC (5 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.2: +5 -5
lines
Diff to previous 1.2 (colored)
py-ordered-set: updated to 3.0.1 3.0.1: Bug fixes.
Revision 1.2 / (download) - annotate - [select for diffs], Sun Jun 24 10:45:19 2018 UTC (5 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2
Changes since 1.1: +5 -5
lines
Diff to previous 1.1 (colored)
py-ordered-set: updated to 3.0.0 3.0.0: Unknown changes
Revision 1.1 / (download) - annotate - [select for diffs], Tue Oct 10 07:27:10 2017 UTC (5 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4
An OrderedSet is a custom MutableSet that remembers its order, so that every entry has an index that can be looked up.