Skip to content

Commit 4581195

Browse files
Brent RubellBrent Rubell
Brent Rubell
authored and
Brent Rubell
committed
relax python requirements back to Python 3.4
1 parent faa710a commit 4581195

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44
sudo: required
55

66
python:
7-
- "3.6"
7+
- "3.4.0"
88

99
cache:
1010
pip: true
@@ -19,4 +19,4 @@ script:
1919
- cd docs && sphinx-build -E -W -b html . _build/html
2020
- cd ..
2121
- cd tests/
22-
- python -m unittest discover
22+
- python -m unittest discover

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
2.0.0
22
- Drop support for API V1. Defaults to API V2
3+
- MQTT/SSL support is now default.
34
- Add support for Python3
45
- New send_batch_data method
56
- Add error messages from response body in RequestError
7+
- Add error messages from MQTT in MQTTError
8+
- New location (lat/lon/ele) support
9+
- New time topics support
10+
- New examples added
11+
- Unit tests updated to support API V2
612

713
0.9.0
814
----

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Adafruit IO Python
1717

1818
A Python client and examples for use with `io.adafruit.com <https://io.adafruit.com>`_.
1919

20-
Compatible with Python 3.6+
20+
Compatible with Python Versions 3.4+
2121

2222
Installation
2323
================

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,25 @@
1818
'Operating System :: MacOS',
1919
'License :: OSI Approved :: MIT License',
2020
'Intended Audience :: Developers',
21-
'Programming Language :: Python :: 3.6',
21+
'Programming Language :: Python :: 3.4',
22+
'Programming Language :: Python :: 3',
2223
'Topic :: Software Development',
2324
'Topic :: Home Automation',
2425
'Topic :: System :: Hardware']
2526

2627
setup(
2728
name = 'adafruit-io',
2829
version = verstr,
29-
author = 'Justin Cooper',
30-
author_email = 'justin@adafruit.com',
30+
author = 'Adafruit Industries',
31+
author_email = 'adafruitio@adafruit.com',
3132
packages = ['Adafruit_IO'],
3233
py_modules = ['ez_setup'],
3334
url = 'https://github.com/adafruit/io-client-python',
3435
license = 'MIT',
3536
keywords = 'Adafruit IO',
3637
classifiers = classifiers,
37-
python_requires = ">=3.6",
38-
description = 'Client library for Adafruit IO (http://io.adafruit.com/).',
38+
python_requires = ">=3.4.0",
39+
description = 'Python client library for Adafruit IO (http://io.adafruit.com/).',
3940
long_description = open('README.rst').read(),
4041
install_requires = ["requests", "paho-mqtt"]
4142
)

0 commit comments

Comments
 (0)