Skip to content

Commit

Permalink
chore: Version bump and update setup.py to include Python3.6 (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfuss authored and sanathkr committed Jun 18, 2018
1 parent 22e1684 commit 07891ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
SAM CLI version
"""

__version__ = '0.3.0'
__version__ = '0.4.0'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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',
Expand Down

0 comments on commit 07891ac

Please sign in to comment.