File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,8 @@ Version 0.1.3
1717-------------
1818
1919 - Exit with non-zero code when execution of function fails.
20+
21+ Version 0.1.4
22+ -------------
23+
24+ - Support Python 3.6.
Original file line number Diff line number Diff line change @@ -26,15 +26,19 @@ def run_tests(self):
2626 sys .exit (pytest .main (self .test_args ))
2727
2828
29- version = "0.1.3 "
29+ version = "0.1.4 "
3030
3131setup (name = "python-lambda-local" ,
3232 version = version ,
3333 description = "Run lambda function in python on local machine." ,
3434 long_description = open ("README.rst" ).read (),
3535 classifiers = [
36- 'Development Status :: 1 - Planning' ,
37- 'Programming Language :: Python'
36+ 'Development Status :: 3 - Alpha' ,
37+ 'Operating System :: POSIX ' ,
38+ 'Programming Language :: Python' ,
39+ 'Programming Language :: Python :: 2.7' ,
40+ 'Programming Language :: Python :: 3.6' ,
41+ 'License :: OSI Approved :: MIT License'
3842 ],
3943 keywords = "AWS Lambda" ,
4044 author = "YANG Xudong" ,
You can’t perform that action at this time.
0 commit comments