Skip to content

Commit

Permalink
Merge pull request #2 from ericmaustin/1-update-to-support-latest-pyt…
Browse files Browse the repository at this point in the history
…hon-versions

added support for latest python versions
  • Loading branch information
ericmaustin authored Feb 2, 2024
2 parents c19d524 + 23596e9 commit 39b77e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layermake/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.0.8"
version = "0.0.9"

header = f"""
█ █▀▀█ █ █ █▀▀ █▀▀█ █▀▄▀█ █▀▀█ █ █ █▀▀
Expand Down
5 changes: 4 additions & 1 deletion layermake/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
client = boto3.client("lambda")

NODEJS_RUNTIMES = ["4.3", "6.10", "8.10", "10.x", "12.x", "14.x", "16.x", "18.x"]
PYTHON_RUNTIMES = ["3.6", "3.7", "3.8", "3.9"]
PYTHON_RUNTIMES = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
BINARY_RUNTIMES = [
"nodejs",
"nodejs4.3",
Expand All @@ -33,6 +33,9 @@
"python3.7",
"python3.8",
"python3.9",
"python3.10",
"python3.11",
"python3.12",
"dotnetcore1.0",
"dotnetcore2.0",
"dotnetcore2.1",
Expand Down

0 comments on commit 39b77e7

Please sign in to comment.