Skip to content

Commit a7bf551

Browse files
authored
Merge pull request devopshq#3 from devopshq/develop
local build fixed
2 parents e7fce72 + 86fe968 commit a7bf551

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ if 'TRAVIS_BUILD_NUMBER' in os.environ and 'TRAVIS_BRANCH' in os.environ:
195195

196196
else:
197197
print("This is local build")
198-
__version__ += '.localbuild' # set version as major.minor.localbuild if local build: python setup.py install
198+
__version__ += '.dev0' # set version as major.minor.localbuild if local build: python setup.py install
199199

200200
print("YourProject build version = {}".format(__version__)) # Перед сборкой выведется сообщение о том, какая версия собирается
201201

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
else:
2626
print("This is local build")
27-
__version__ += '.localbuild' # set version as major.minor.localbuild if local build: python setup.py install
27+
__version__ += '.dev0' # set version as major.minor.localbuild if local build: python setup.py install
2828

2929
print("ExampleProject build version = {}".format(__version__)) # Перед сборкой выведется сообщение о том, какая версия собирается
3030

0 commit comments

Comments
 (0)