-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from jwodder/onbuild
Support "onbuild" step when using Hatch
- Loading branch information
Showing
22 changed files
with
741 additions
and
114 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,8 @@ | |
- Can optionally write the final version to a file for loading at runtime | ||
- Provides custom setuptools commands for inserting the final version into a | ||
source file at build time | ||
- Provides custom hooks for inserting the final version into a source file at | ||
build time | ||
- The individual methods for VCS querying, tag-to-version calculation, version | ||
bumping, version formatting, and writing the version to a file can all be | ||
|
@@ -43,7 +43,7 @@ | |
<https://versioningit.rtfd.io> for more information. | ||
""" | ||
|
||
__version__ = "2.4.0.dev1" | ||
__version__ = "3.0.0.dev1" | ||
__author__ = "John Thorvald Wodder II" | ||
__author_email__ = "[email protected]" | ||
__license__ = "MIT" | ||
|
@@ -72,6 +72,7 @@ | |
NotVersioningitError, | ||
) | ||
from .get_cmdclasses import get_cmdclasses | ||
from .onbuild import OnbuildFile, OnbuildFileProvider | ||
|
||
__all__ = [ | ||
"ConfigError", | ||
|
@@ -84,6 +85,8 @@ | |
"NotSdistError", | ||
"NotVCSError", | ||
"NotVersioningitError", | ||
"OnbuildFile", | ||
"OnbuildFileProvider", | ||
"Report", | ||
"VCSDescription", | ||
"Versioningit", | ||
|
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
Oops, something went wrong.