Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Version bump and update setup.py to include Python3.6 #483

Merged
merged 3 commits into from Jun 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion samcli/__init__.py
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
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