Skip to content

Commit 25275f2

Browse files
committed
Bump version to 2.2.3
1 parent dd032ce commit 25275f2

4 files changed

Lines changed: 6 additions & 17 deletions

File tree

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,4 @@ v2.2.2 11/19/15 -- Add error_callback function to XBeeBase
9393
when an unexpected Exception (not ThreadQuitException) is raised
9494
while waiting for serial data. This generally indicates that the XBee
9595
serial interface needs to be reconnected.
96+
v2.2.3 11/21/15 -- Fix README for GitHub and PyPI

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
include README.rst
12
include *.txt
23
include *.py
34
recursive-include docs *.*

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '2.2.2'
48+
version = '2.2.3'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '2.2.2'
50+
release = '2.2.3'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,17 @@
88
'xbee.helpers.dispatch.tests',
99
]
1010

11-
try:
12-
from pypandoc import convert
13-
def read_md(f):
14-
try:
15-
return convert(f, 'rst')
16-
except Exception as e:
17-
print("warning: pypandoc module not found,"
18-
" not converting Markdown to RST")
19-
print(e)
20-
except ImportError:
21-
print("warning: pypandoc module not found, not converting Markdown to RST")
22-
read_md = lambda f: open(f, 'r').read()
23-
2411
setup(
2512
name='XBee',
26-
version='2.2.2',
13+
version='2.2.3',
2714
author='Paul Malmsten',
2815
author_email='pmalmsten@gmail.com',
2916
packages=packages,
3017
scripts=[],
3118
url='https://github.com/nioinnovation/python-xbee',
3219
license='LICENSE.txt',
3320
description='Python tools for working with XBee radios',
34-
long_description=read_md('README.md'),
21+
long_description=open('README.rst').read(),
3522
requires=['serial'],
3623
provides=packages,
3724
)

0 commit comments

Comments
 (0)