-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci/cd and versioning enhanced, cli and update routines
- Loading branch information
1 parent
52f295e
commit a2f7e56
Showing
5 changed files
with
11 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
from ._version import __version__ | ||
from .lasco import * | ||
from .reconstruction import * | ||
from .dataset import * | ||
__version__ = '{{VERSION_PLACEHOLDER}}' | ||
__author__ = "Jorgedavyd" | ||
__email__ = "jorged.encyso@gmail.com" |
This file was deleted.
Oops, something went wrong.
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,5 +1,7 @@ | ||
#!/bin/bash | ||
python3 -m pip install --upgrade pip | ||
pip3 install pytest black pipreqs pip-tools | ||
VERSION="0.0.$(date +%s)" | ||
sed -i "s/{{VERSION_PLACEHOLDER}}/$VERSION/" corkit/__init__.py | ||
pip install . | ||
corkit-update --batch-size 1 |