Skip to content

Commit 21c187c

Browse files
authored
Adds support for Python 3.5 (#12)
* Initial commit * Updated Travis * Travis reorg * Update
1 parent 5aa54e9 commit 21c187c

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ changes:
3434
If you wish to continue using the previous, synchronous version of
3535
`simplipy`, make sure to pin version 2.0.2.
3636

37+
# Versions
38+
39+
`simplisafe-python` is currently supported on:
40+
41+
* Python 3.5
42+
* Python 3.6
43+
* Python 3.7
44+
45+
However, running the test suite currently requires Python 3.6 or higher; tests
46+
run on Python 3.5 will fail.
3747

3848
# Installation
3949

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
DESCRIPTION = 'A Python3, async interface to the SimpliSafe API'
2020
URL = 'https://github.com/w1ll1am23/simplisafe-python'
2121
EMAIL = ''
22-
AUTHOR = 'William Scanlon and Aaron Bach'
23-
REQUIRES_PYTHON = '>=3.6.0'
22+
AUTHOR = 'Aaron Bach'
23+
REQUIRES_PYTHON = '>=3.5.3'
2424
VERSION = None
2525

2626
# What packages are required for this module to be executed?
@@ -120,6 +120,7 @@ def run(self):
120120
'License :: OSI Approved :: MIT License',
121121
'Programming Language :: Python',
122122
'Programming Language :: Python :: 3',
123+
'Programming Language :: Python :: 3.5',
123124
'Programming Language :: Python :: 3.6',
124125
'Programming Language :: Python :: 3.7',
125126
'Programming Language :: Python :: Implementation :: CPython',

0 commit comments

Comments
 (0)