Path to this page:
Subject: CVS commit: pkgsrc/sysutils/py-invoke
From: Adam Ciarcinski
Date: 2023-07-18 17:31:12
Message id: 20230718153112.7BF90FBDB@cvs.NetBSD.org
Log Message:
py-invoke: updated to 2.2.0
2.2.0 2023-07-12
[Feature]: Remove the somewhat inaccurate subclass requirement around Config’s \
.clone(into=...) constructor call. It was broken for certain use cases (such as \
trying to clone one subclass into a sibling subclass, which would yield a \
TypeError) and is irrelevant if one is using the new type annotations.
[Support] Make sure py.typed is in our packaging manifest; without it, users \
working from a regular installation can’t perform type checks. Thanks to \
Nikita Sobolev for catch & patch.
2.1.3 2023-06-14
[Bug] After the release of 2.1, package-style task modules started looking in \
the wrong place for project-level config files (inside one’s eg tasks/ dir, \
instead of next to that dir) due to a subtlety in the new import/discovery \
mechanism used. This has been fixed. Thanks to Arnaud V. and Hunter Kelly for \
the reports and to Jesse P. Johnson for initial debugging/diagnosis.
2.1.2 2023-05-15
[Support] Make sure py.typed is in our packaging manifest; without it, users \
working from a regular installation can’t perform type checks. Thanks to \
Nikita Sobolev for catch & patch.
2.1.1 2023-05-01
[Bug] Add more rigor around subprocess/runner shutdown to avoid spurious \
exceptions & also fix downstream issues in libraries like Fabric. Reported \
by Orlando Rodríguez.
[Bug] The importlib upgrade in 2.1 had a corner case bug (regarding from . \
import <submodule> functionality within package-like task trees) which in \
turn exposed a false-pass in our test suite. Both have now been fixed. Thanks to \
Greg Meyer and Robert J. Berger for the bug reports.
2.0.1 2023-04-29
[Bug] Add more rigor around subprocess/runner shutdown to avoid spurious \
exceptions & also fix downstream issues in libraries like Fabric. Reported \
by Orlando Rodríguez.
[Support] Tweak test suite setup methods to be named setup_method so pytest \
stops whining about it. Patch via Jesse P. Johnson.
2.1.0 2023-04-28
[Bug] Resolve equality comparison bug for non-collections. Patch via Jesse P. Johnson
[Support] Tweak test suite setup methods to be named setup_method so pytest \
stops whining about it. Patch via Jesse P. Johnson.
[Support] Implement type hints and type checking tests with mypy to reduce \
errors and impove code documentation. Patches by Jesse P. Johnson and review by \
Sam Bull.
[Support] Implement importlib and deprecate imp module. Patches provided by \
Jesse P. Johnson
2.0.0 2023-01-16
[Support]: Task.argspec has changed its return value; it now returns an \
inspect.Signature derived from that of the task’s body callable.
Files: