File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,6 @@ tag = True
77search = __version__ = ' {current_version}'
88replace = __version__ = ' {new_version}'
99
10+ [bumpversion:file:setup.py]
11+ search = __version__ = ' {current_version}'
12+ replace = __version__ = ' {new_version}'
Original file line number Diff line number Diff line change 1616from __future__ import print_function
1717from setuptools import setup , find_packages
1818from setuptools .command .test import test as TestCommand
19- import watson_developer_cloud
2019import io
2120import os
2221import sys
2322
24- version = watson_developer_cloud . __version__
23+ __version__ = '0.1.3'
2524
2625if sys .argv [- 1 ] == 'publish' :
2726 # test server
@@ -53,7 +52,7 @@ def run_tests(self):
5352 sys .exit (errcode )
5453
5554setup (name = 'watson-developer-cloud' ,
56- version = version ,
55+ version = __version__ ,
5756 description = 'Client library to use the IBM Watson Services' ,
5857 license = 'Apache 2.0' ,
5958 install_requires = ['requests' ],
You can’t perform that action at this time.
0 commit comments