File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = 0.1.5
3+ commit = True
4+ tag = True
5+ parse = (?P<major>\d+)\.(?P<feat>\d+)\.(?P<patch>\d+)
6+ serialize =
7+ {major}.{feat}.{patch}
8+
9+ [bumpversion:file:easy/__init__.py]
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ clean: ## Removing cached python compiled files
1313install : # # Install dependencies
1414 make clean
1515 flit install --deps develop --symlink
16+ pre-commit install
1617
1718lint : # # Run code linters
1819 autoflake --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports -r easy tests
@@ -47,6 +48,3 @@ bump-feat:
4748
4849bump-major :
4950 bumpversion major
50-
51- bump-build :
52- bumpversion build
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ test = [
7070dev = [
7171 " autoflake" ,
7272 " pre_commit" ,
73+ " bumpversion==0.6.0" ,
7374]
7475doc = [
7576 " mkdocs >=1.1.2,<2.0.0" ,
You can’t perform that action at this time.
0 commit comments