Skip to content

Commit 056d862

Browse files
committed
One more bump to the version, 0.4.3 is the newest to pypi
1 parent 4c16196 commit 056d862

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@
33
from distutils.core import setup
44
from os import path
55
from setuptools.command.install import install
6-
import pypandoc
76

87
here = path.abspath(path.dirname(__file__))
98

109
# Create rst here from Markdown
1110
if path.exists(path.join(here, 'README.md')):
11+
import pypandoc
1212
z = pypandoc.convert('README.md','rst',format='markdown')
13-
14-
with open('README.rst','w') as outfile:
15-
outfile.write(z)
13+
with open('README.rst','w') as outfile:
14+
outfile.write(z)
1615

1716
with open(path.join(here, 'README.rst')) as f:
1817
long_description = f.read()
1918

2019

2120
setup(name='hawkular-client',
22-
version='0.4.1',
21+
version='0.4.3',
2322
description='Python client to communicate with Hawkular server over HTTP(S)',
2423
author='Michael Burman',
2524
author_email='miburman@redhat.com',

0 commit comments

Comments
 (0)