Skip to content

Commit

Permalink
Bump version to 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hansmosh committed Oct 21, 2015
1 parent dd032ce commit 25275f2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 17 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,4 @@ v2.2.2 11/19/15 -- Add error_callback function to XBeeBase
when an unexpected Exception (not ThreadQuitException) is raised
while waiting for serial data. This generally indicates that the XBee
serial interface needs to be reconnected.
v2.2.3 11/21/15 -- Fix README for GitHub and PyPI
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include README.rst
include *.txt
include *.py
recursive-include docs *.*
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '2.2.2'
version = '2.2.3'
# The full version, including alpha/beta/rc tags.
release = '2.2.2'
release = '2.2.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
17 changes: 2 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,17 @@
'xbee.helpers.dispatch.tests',
]

try:
from pypandoc import convert
def read_md(f):
try:
return convert(f, 'rst')
except Exception as e:
print("warning: pypandoc module not found,"
" not converting Markdown to RST")
print(e)
except ImportError:
print("warning: pypandoc module not found, not converting Markdown to RST")
read_md = lambda f: open(f, 'r').read()

setup(
name='XBee',
version='2.2.2',
version='2.2.3',
author='Paul Malmsten',
author_email='[email protected]',
packages=packages,
scripts=[],
url='https://github.com/nioinnovation/python-xbee',
license='LICENSE.txt',
description='Python tools for working with XBee radios',
long_description=read_md('README.md'),
long_description=open('README.rst').read(),
requires=['serial'],
provides=packages,
)

0 comments on commit 25275f2

Please sign in to comment.