Skip to content

Commit c2d7f56

Browse files
Installation should not depend on pypandoc #11
1 parent 3fdc752 commit c2d7f56

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ tag = True
77
search = __version__ = '{current_version}'
88
replace = __version__ = '{new_version}'
99

10+
[bumpversion:file:setup.py]
11+
search = __version__ = '{current_version}'
12+
replace = __version__ = '{new_version}'

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
from __future__ import print_function
1717
from setuptools import setup, find_packages
1818
from setuptools.command.test import test as TestCommand
19-
import watson_developer_cloud
2019
import io
2120
import os
2221
import sys
2322

24-
version = watson_developer_cloud.__version__
23+
__version__ = '0.1.3'
2524

2625
if sys.argv[-1] == 'publish':
2726
# test server
@@ -53,7 +52,7 @@ def run_tests(self):
5352
sys.exit(errcode)
5453

5554
setup(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'],

0 commit comments

Comments
 (0)