-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
v1.5.0, 6/27/10 -- Initial Packaging. Fully restructured into a unified API with tests. | ||
v1.7.0 6/29/10 -- Now supports both Series 1 and Series 2 modules | ||
(the API turned out to be the same). Additionally: | ||
* API frame logic was split into its own class, APIFrame | ||
* XBee renamed to XBeeBase | ||
* XBee1 renamed to XBee | ||
* Tests updated to reflect changes; API frame tests | ||
moved to test_frame.py, now test APIFrame instead of | ||
XBee base class | ||
* Test files renamed appropriately | ||
* PyLint score improved | ||
* Various docstring updates | ||
* Updated example code to reflect changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='XBee', | ||
version='1.5.0', | ||
version='1.7.0', | ||
author='Paul Malmsten', | ||
author_email='[email protected]', | ||
packages=['xbee', 'xbee.tests'], | ||
|
@@ -11,4 +11,6 @@ | |
license='LICENSE.txt', | ||
description='Python tools for working with XBee radios', | ||
long_description=open('README.txt').read(), | ||
requires=['serial'], | ||
provides=['xbee','xbee.tests'] | ||
) |