-
-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename the project to python-miio #83
Conversation
@@ -1,13 +1,13 @@ | |||
from setuptools import setup | |||
|
|||
with open('mirobo/version.py') as f: exec(f.read()) | |||
with open('miio/version.py') as f: exec(f.read()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
multiple statements on one line (colon)
mirobo/__init__.py
Outdated
warnings.warn("Please convert to using 'miio' package, this package will " | ||
"be removed at some point in the future", DeprecationWarning, | ||
stacklevel=2) | ||
from miio import * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
module level import not at top of file
'from miio import ' used; unable to detect undefined names
'miio.' imported but unused
Changes Unknown when pulling 186a700 on rename-package into ** on master**. |
Looks good! I need a day or two for testing. |
186a700
to
7ffb980
Compare
Just tested. Looks good! |
7ffb980
to
0089c22
Compare
This commit renames the project to its new name, python-miio. The name of the package has been changed to 'miio', although the old 'mirobo' is still available for backwards compatibility. Anyone trying to access and use the 'mirobo' package will be welcomed by a deprecation warning, although there are no plans to break the API currently. README.md got also updated to links for other home-assistant integrations available.
0089c22
to
db577ac
Compare
Thanks @syssi! And thanks also to @SchumyHao for releasing the new name for our use! :-) A new release will follow during this week. |
This commit renames the project to its new name, python-miio.
The name of the package has been changed to 'miio',
although the old 'mirobo' is still available for backwards compatibility.
Anyone trying to access and use the 'mirobo' package will be welcomed
by a deprecation warning, although there are no plans to break the API currently.
README.md got also updated to links for other home-assistant integrations available.