Skip to content

Commit 0b338bc

Browse files
committed
change image to official AWS image.add Python 3.9 support
1 parent 91e9978 commit 0b338bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This function was created to address these issues:
1616
- Builds zip file containing Python dependancies and places the libraries into the proper directory structure for lambda layers
1717
- Ensures compiled libraries are compatible with Lambda environment by using [docker container](https://hub.docker.com/r/lambci/lambda) that mimics the lambda runtime environment
1818
- Optimized the zip size by removing `.pyc` files and unnecessary libraries
19-
- allows specifying lambda supported python versions: 2.7, 3.6, 3.7 and 3.8
19+
- allows specifying lambda supported python versions: 2.7, 3.6, 3.7 , 3.8 and 3.9 (default)
2020
- Automatically searches for requirements.txt file in several locations:
2121
- same directory as script
2222
- parent directory or script (useful when used as submodule)
@@ -30,14 +30,14 @@ Clone for standalone use or within a repo:
3030

3131
``` bash
3232
# If installing into an exisiting repo, navigate to repo dir
33-
git clone --depth 1 https://github.com/robertpeteuil/build-lambda-layer-python _build_layer
33+
git clone --depth 1 https://github.com/nowfox/build-lambda-layer-python _build_layer
3434
```
3535

3636
Alternatively, add as a submodule:
3737

3838
``` bash
3939
cd {repo root}
40-
git submodule add https://github.com/robertpeteuil/build-lambda-layer-python _build_layer
40+
git submodule add https://github.com/nowfox/build-lambda-layer-python _build_layer
4141
# Update submodule
4242
git submodule update --init --recursive --remote
4343
```

0 commit comments

Comments
 (0)