Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2017 HDE, Inc.
Copyright (c) 2015-2018 HDE, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Run lambda function on local machine

## Prepare development environment

Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
Please use a newly created virtualenv of Python 2.7 or Python 3.6.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Run lambda function on local machine
Prepare development environment
-------------------------------

Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
Please use a newly created virtualenv of Python 2.7 or Python 3.6.

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion lambda_local/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''
python-lambda-local: Main module

Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''

Expand Down
2 changes: 1 addition & 1 deletion lambda_local/context.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''

Expand Down
2 changes: 1 addition & 1 deletion lambda_local/event.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''

Expand Down
2 changes: 1 addition & 1 deletion lambda_local/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''

Expand Down
2 changes: 1 addition & 1 deletion lambda_local/timeout.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''
python-lambda-local: Run lambda function in python on local machine.

Copyright 2015-2017 HDE, Inc.
Copyright 2015-2018 HDE, Inc.
Licensed under MIT.
'''
import io
Expand Down
10 changes: 10 additions & 0 deletions wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ build-py2:
code: |
python setup.py sdist bdist_wheel

- script:
name: test
code: |
python setup.py test

build-py3:
box: python:3.6-slim
steps:
Expand All @@ -49,6 +54,11 @@ build-py3:
code: |
python setup.py sdist bdist_wheel

- script:
name: test
code: |
python setup.py test

deploy:
pypi:
- script:
Expand Down