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
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.10'
- name: Initialize Pipenv
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.10'
- name: Install Tools
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-slim
FROM python:3.10-slim
ARG version

RUN apt-get update && apt-get install -y --no-install-recommends curl && apt-get clean && rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pyyaml = "*"
tabulate = "*"
click = "*"
jinja2 = "*"
aws-lambda-builders = ">=1.23.0"
aws-lambda-builders = ">=1.30.0"
arrow = "*"

[requires]
Expand Down
277 changes: 184 additions & 93 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'pyyaml',
'tabulate',
'jinja2',
'aws-lambda-builders>=1.23.0',
'aws-lambda-builders>=1.30.0',
'arrow'
],
entry_points='''
Expand Down
4 changes: 3 additions & 1 deletion stackmanager/packager.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
'python3.7': PYTHON_PIP_CONFIG,
'python3.8': PYTHON_PIP_CONFIG,
'python3.9': PYTHON_PIP_CONFIG,
'python3.10': PYTHON_PIP_CONFIG,
'dotnetcore3.1': DOTNET_CLIPACKAGE_CONFIG,
'dotnet6': DOTNET_CLIPACKAGE_CONFIG,
'nodejs12.x': NODEJS_NPM_CONFIG,
Expand All @@ -34,7 +35,8 @@
'go1.x': GO_MOD_CONFIG,
'java8': [JAVA_MAVEN_CONFIG, JAVA_GRADLE_CONFIG, JAVA_KOTLIN_GRADLE_CONFIG],
'java8.al2': [JAVA_MAVEN_CONFIG, JAVA_GRADLE_CONFIG, JAVA_KOTLIN_GRADLE_CONFIG],
'java11': [JAVA_MAVEN_CONFIG, JAVA_GRADLE_CONFIG, JAVA_KOTLIN_GRADLE_CONFIG]
'java11': [JAVA_MAVEN_CONFIG, JAVA_GRADLE_CONFIG, JAVA_KOTLIN_GRADLE_CONFIG],
'java17': [JAVA_MAVEN_CONFIG, JAVA_GRADLE_CONFIG, JAVA_KOTLIN_GRADLE_CONFIG]
}

# Configure logging for aws_lambda_builders
Expand Down