Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 6aa3088

Browse files
authored
chore: Add python 3.4 and 3.5 support (#22)
1 parent e587a0b commit 6aa3088

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ language: python
22

33
python:
44
- "2.7"
5+
- "3.4"
6+
- "3.5"
57
- "3.6"
68

79
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs

serverlessrepo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Serverlessrepo version and package meta-data."""
22

33
__title__ = 'serverlessrepo'
4-
__version__ = '0.1.5'
4+
__version__ = '0.1.6'
55
__license__ = 'Apache 2.0'
66
__description__ = (
77
'A Python library with convenience helpers for working '

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
license=about['__license__'],
4646
keywords="AWS Serverless Application Repository",
4747
packages=find_packages(exclude=['tests', 'docs']),
48-
# Support Python 2.7 and 3.6 or greater
48+
# Support Python 2.7 and 3.4 or greater
4949
python_requires=(
50-
'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*'
50+
'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
5151
),
5252
install_requires=REQUIRED,
5353
extras_require=EXTRAS,
@@ -61,6 +61,8 @@
6161
'Operating System :: OS Independent',
6262
'Programming Language :: Python',
6363
'Programming Language :: Python :: 2.7',
64+
'Programming Language :: Python :: 3.4',
65+
'Programming Language :: Python :: 3.5',
6466
'Programming Language :: Python :: 3.6',
6567
'Programming Language :: Python :: 3.7',
6668
'Topic :: Internet',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py36, py37
2+
envlist = py27, py34, py35, py36, py37
33

44
[testenv]
55
whitelist_externals = make

0 commit comments

Comments
 (0)