From 07891acd1db39c40577b67fd277e483d4eb120de Mon Sep 17 00:00:00 2001 From: Jacob Fuss <32497805+jfuss@users.noreply.github.com> Date: Mon, 18 Jun 2018 14:23:21 -0400 Subject: [PATCH] chore: Version bump and update setup.py to include Python3.6 (#483) --- samcli/__init__.py | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/samcli/__init__.py b/samcli/__init__.py index 51197b937b..53fe5a5718 100644 --- a/samcli/__init__.py +++ b/samcli/__init__.py @@ -2,4 +2,4 @@ SAM CLI version """ -__version__ = '0.3.0' +__version__ = '0.4.0' diff --git a/setup.py b/setup.py index 270d07b268..53cc16e2b8 100644 --- a/setup.py +++ b/setup.py @@ -44,8 +44,8 @@ def read_version(): license=read('LICENSE'), packages=find_packages(exclude=('tests', 'docs')), keywords="AWS SAM CLI", - # Support Python2.7 and higher, but not 3.x - python_requires='~=2.7', + # Support Python 2.7 and 3.6 or greater + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*', entry_points={ 'console_scripts': [ '{}=samcli.cli.main:cli'.format(cmd_name) @@ -66,6 +66,7 @@ def read_version(): 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.6', 'Topic :: Internet', 'Topic :: Software Development :: Build Tools', 'Topic :: Utilities',