-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make: Prepare version management (#120)
- Loading branch information
Showing
5 changed files
with
42 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[bumpversion] | ||
current_version = 0.3.0 | ||
commit = True | ||
tag = True | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))? | ||
serialize = | ||
{major}.{minor}.{patch}-{release} | ||
{major}.{minor}.{patch} | ||
|
||
[bumpversion:part:build] | ||
first_value = 1 | ||
|
||
[bumpversion:file:anta/__init__.py] | ||
|
||
[bumpversion:part:release] | ||
optional_value = gamma | ||
values = | ||
dev | ||
beta | ||
gamma |
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 |
---|---|---|
|
@@ -93,3 +93,6 @@ venv.bak/ | |
|
||
# mkdocs documentation | ||
/site | ||
|
||
# vscode settings | ||
.vscode/ |
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 |
---|---|---|
|
@@ -4,6 +4,19 @@ | |
anta init | ||
""" | ||
|
||
__version__ = '0.1.0' | ||
__author__ = 'Khelil Sator' | ||
__author_email__ = '[email protected]' | ||
__version__ = "0.3.0" | ||
__author__ = "Khelil Sator" | ||
__email__ = "[email protected]" | ||
__maintainer__ = "Khelil Sator" | ||
__credits__ = [ | ||
"Angélique Phillipps", | ||
"Colin MacGiollaEáin", | ||
"Khelil Sator", | ||
"Matthieu Tache", | ||
"Onur Gashi", | ||
"Paul Lavelle", | ||
"Guillaume Mulocher", | ||
"Thomas Grimonet" | ||
] | ||
__copyright__ = "Copyright 2022, Arista EMEA AS" | ||
__license__ = "Apache" |
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,4 @@ | ||
lazydocs | ||
bump2version==1.0.1 | ||
pytest | ||
pylint | ||
pytest-cov>=2.11.1 | ||
|
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