Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ body:
attributes:
label: AWS Lambda function runtime
options:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.10
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/static_typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ body:
attributes:
label: AWS Lambda function runtime
options:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.10
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_v2_layer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
cache: "pip"
- name: Resolve and install project dependencies
# CDK spawns system python when compiling stack
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]
env:
PYTHON: ${{ matrix.python-version }}
PYTHON: "${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v3
- name: Install poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
cache: "poetry"
- name: Set release notes tag
id: release_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_deploy_v2_layer_stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.10"
cache: "pip"
- name: Resolve and install project dependencies
# CDK spawns system python when compiling stack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
cache: "poetry"
- name: Install dependencies
run: make dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false # needed so if a version fails, the others will still be able to complete and cleanup
matrix:
version: ["3.7", "3.8", "3.9"]
version: ["3.7", "3.8", "3.9", "3.10"]
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: "Checkout"
Expand All @@ -40,7 +40,7 @@ jobs:
- name: "Use Python"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
python-version: "${{ matrix.version }}"
architecture: "x64"
cache: "poetry"
- name: Setup Node.js
Expand Down
120 changes: 60 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "aws-lambda-powertools-python-e2e",
"version": "1.0.0",
"devDependencies": {
"aws-cdk": "^2.74.0"
"aws-cdk": "^2.75.0"
}
}
Loading