Skip to content

Commit 69d7688

Browse files
committed
update workflows
1 parent 1596fd9 commit 69d7688

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

.github/workflows/minimal-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.8", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121
platform: [ubuntu-latest, macos-latest, windows-latest]
2222

2323
env:

building/build-lambda-layers.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,6 @@ pushd lambda
2121
# Building all related docker images
2222
./build-docker-images.sh $PYTHON_VERSION
2323

24-
# Python 3.8
25-
if [[ $PYTHON_VERSION == "ALL" || $PYTHON_VERSION == "3.8" ]]
26-
then
27-
docker run \
28-
--volume "$DIR_NAME":/aws-sdk-pandas/ \
29-
--workdir /aws-sdk-pandas/building/lambda \
30-
--rm \
31-
awswrangler-build-py38 \
32-
build-lambda-layer.sh "${VERSION}-py3.8${ARCH_SUFFIX}" "ninja-build"
33-
fi
34-
3524
# Python 3.9
3625
if [[ $PYTHON_VERSION == "ALL" || $PYTHON_VERSION == "3.9" ]]
3726
then

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ max-returns=6 # Maximum number of return / yield for function / method body.
176176
max-statements=50 # Maximum number of statements in function / method body.
177177

178178
[tool.mypy]
179-
python_version = "3.8"
179+
python_version = "3.9"
180180
strict = true
181181
ignore_missing_imports = true
182182
warn_unused_ignores = true

test_infra/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Amazon Web Services"]
66
license = "Apache License 2.0"
77

88
[tool.poetry.dependencies]
9-
python = ">=3.8, <4.0"
9+
python = ">=3.9, <4.0"
1010
"aws-cdk-lib" = "^2.128.0"
1111
"aws-cdk.aws-glue-alpha" = "^2.128.0a0"
1212
"aws-cdk.aws-neptune-alpha" = "^2.128.0a0"

0 commit comments

Comments
 (0)