File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1+ include README.rst
12include *.txt
23include *.py
34recursive-include docs *.*
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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-
2411setup (
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)
You can’t perform that action at this time.
0 commit comments