Skip to content

Commit

Permalink
bump required python version to 3.6+ (#560)
Browse files Browse the repository at this point in the history
homeassistant requires now 3.6.1 or newer, so we can bump our requirement.
this will allow us to convert the code-base to use f-strings.

Closes #494
  • Loading branch information
rytilahti authored and syssi committed Oct 11, 2019
1 parent 276fb38 commit 724113f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- "3.5"
- "3.6"
install: pip install tox-travis coveralls
script: tox
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,14 @@ def readme():
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
],
keywords="xiaomi miio vacuum",
packages=["miio"],
include_package_data=True,
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=[
"construct",
"click>=7",
Expand Down

0 comments on commit 724113f

Please sign in to comment.