-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace remaining usage of sh with subprocess_util (#51)
* use the pypa `build` tool instead of setup.py * replace remaining usage of sh with subprocess_util * replace @lru_cache(None) with @cache If you want an unbounded cache, it's better to use `functools.cache` (new in Python 3.9) rather than `functools.lru_cache(None)`, as the former has a faster implementation that doesn't concern itself with cache eviction. * add clog frag
- Loading branch information
Showing
6 changed files
with
37 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
minor_changes: | ||
- "Replace internal usage of ``sh`` with the ``antsibull.subprocess_util`` module | ||
(https://github.com/ansible-community/antsibull-core/pull/51)." | ||
- "Use the pypa ``build`` tool instead of directly calling ``setup.py`` which is | ||
deprecated (https://github.com/ansible-community/antsibull-core/pull/51)." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters