Skip to content

Commit f4a84f9

Browse files
Update copyright year and use Python 3.7
1 parent c6aae27 commit f4a84f9

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2017 HDE, Inc.
3+
Copyright (c) 2015-2018 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Run lambda function on local machine
88

99
## Prepare development environment
1010

11-
Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
11+
Please use a newly created virtualenv of Python 2.7 or Python 3.7.
1212

1313
## Installation
1414

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Run lambda function on local machine
99
Prepare development environment
1010
-------------------------------
1111

12-
Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
12+
Please use a newly created virtualenv of Python 2.7 or Python 3.7.
1313

1414
Installation
1515
------------

lambda_local/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''
22
python-lambda-local: Main module
33
4-
Copyright 2015-2017 HDE, Inc.
4+
Copyright 2015-2018 HDE, Inc.
55
Licensed under MIT.
66
'''
77

lambda_local/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/timeout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

setup.py

Lines changed: 2 additions & 2 deletions
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-2017 HDE, Inc.
4+
Copyright 2015-2018 HDE, Inc.
55
Licensed under MIT.
66
'''
77
import io
@@ -34,7 +34,7 @@ def run_tests(self):
3434
'Operating System :: POSIX',
3535
'Programming Language :: Python',
3636
'Programming Language :: Python :: 2.7',
37-
'Programming Language :: Python :: 3.6',
37+
'Programming Language :: Python :: 3.7',
3838
'License :: OSI Approved :: MIT License'
3939
],
4040
keywords="AWS Lambda",

wercker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ build-py2:
2727
python setup.py sdist bdist_wheel
2828
2929
build-py3:
30-
box: python:3.6-slim
30+
box: python:3.7-slim
3131
steps:
3232
- script:
3333
name: virtualenv install

0 commit comments

Comments
 (0)