Skip to content

Commit 602e127

Browse files
Bump version, add update several other information
1 parent 84f5738 commit 602e127

13 files changed

+39
-13
lines changed

CHANGELOG.txt

+18
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,21 @@ Version 0.1.10
5252
--------------
5353

5454
- Fix traceback output when exception happens.
55+
56+
Version 0.1.11
57+
--------------
58+
59+
- Test on python 3.8.
60+
61+
Version 0.1.12
62+
--------------
63+
64+
- Fix error when running on Windows with Python 3.
65+
66+
Version 0.1.13
67+
--------------
68+
69+
- Drop support of Python 2.7.
70+
- Various update and cleanup, add Python 3.9 support.
71+
- Add __main__ file for using the package as a module.
72+
- Implement tests via Github Actions.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
3+
Copyright (c) 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

lambda_local/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''
22
python-lambda-local: Main module
33
4-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
4+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
55
Licensed under MIT.
66
'''
77

lambda_local/context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
33
Licensed under MIT.
44
'''
55
from __future__ import print_function

lambda_local/environment_variables.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
'''
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
3+
Licensed under MIT.
4+
'''
15
import json
26
import os
37

lambda_local/event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
33
Licensed under MIT.
44
'''
55

lambda_local/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
33
Licensed under MIT.
44
'''
55

lambda_local/timeout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
33
Licensed under MIT.
44
'''
55

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''
22
python-lambda-local: Run lambda function in python on local machine.
33
4-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
4+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
55
Licensed under MIT.
66
'''
77
import io
@@ -23,7 +23,7 @@ def run_tests(self):
2323
sys.exit(pytest.main(self.test_args))
2424

2525

26-
version = "0.1.12"
26+
version = "0.1.13"
2727

2828
TEST_REQUIRE = ['pytest']
2929

@@ -41,8 +41,8 @@ def run_tests(self):
4141
'License :: OSI Approved :: MIT License'
4242
],
4343
keywords="AWS Lambda",
44-
author="YANG Xudong",
45-
author_email="xudong.yang@hennge.com",
44+
author="YANG Xudong, Iskandar Setiadi",
45+
author_email="iskandar.setiadi@hennge.com",
4646
url="https://github.com/HDE/python-lambda-local",
4747
license="MIT",
4848
packages=find_packages(exclude=['examples', 'tests']),

tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
Organize tests into files, each named xxx_test.py
66
Read more here: http://pytest.org/
77
8-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
8+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
99
Licensed under MIT
1010
'''

tests/basic_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Write each test as a function named test_<something>.
66
Read more here: http://pytest.org/
77
8-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
8+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
99
Licensed under MIT
1010
'''
1111

tests/test_direct_invocations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Meant for use with py.test.
66
7-
Copyright 2015-2020 HENNGE K.K. (formerly known as HDE, Inc.)
7+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
88
Licensed under MIT
99
'''
1010
import json

tests/test_environment_variables.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
'''
2+
Copyright 2015-2022 HENNGE K.K. (formerly known as HDE, Inc.)
3+
Licensed under MIT.
4+
'''
15
import os
26

37
from lambda_local.environment_variables import set_environment_variables

0 commit comments

Comments
 (0)