-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): enable poetry-dyanic-versioning and cz changelog
This set of changes allows poetry to automatically set the version during build. They also provide a commitizen configuration that allows for automatic changelog generation. Closes #333
- Loading branch information
1 parent
871b633
commit 8483796
Showing
5 changed files
with
31 additions
and
6 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#! /usr/bin/env bash | ||
python -m pip install poetry-dynamic-versioning | ||
poetry config virtualenvs.in-project true --local | ||
poetry install --with cell_locations,collate,dev | ||
poetry run pre-commit install --install-hooks |
Empty file.
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
__project__ = "pycytominer" | ||
__version__ = "0.2.0" | ||
# These version placeholders are updated during build by poetry-dynamic-versioning | ||
__version__ = "0.0.0" | ||
__version_tuple__ = (0, 0, 0) | ||
__license__ = "BSD 3-Clause License" | ||
__author__ = "Pycytominer Contributors" |
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