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
17
17
-------------
18
18
19
19
- 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):
26
26
sys .exit (pytest .main (self .test_args ))
27
27
28
28
29
- version = "0.1.3 "
29
+ version = "0.1.4 "
30
30
31
31
setup (name = "python-lambda-local" ,
32
32
version = version ,
33
33
description = "Run lambda function in python on local machine." ,
34
34
long_description = open ("README.rst" ).read (),
35
35
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'
38
42
],
39
43
keywords = "AWS Lambda" ,
40
44
author = "YANG Xudong" ,
You can’t perform that action at this time.
0 commit comments