Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kukushking committed Dec 16, 2024
1 parent 1596fd9 commit 69d7688
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/minimal-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
platform: [ubuntu-latest, macos-latest, windows-latest]

env:
Expand Down
11 changes: 0 additions & 11 deletions building/build-lambda-layers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,6 @@ pushd lambda
# Building all related docker images
./build-docker-images.sh $PYTHON_VERSION

# Python 3.8
if [[ $PYTHON_VERSION == "ALL" || $PYTHON_VERSION == "3.8" ]]
then
docker run \
--volume "$DIR_NAME":/aws-sdk-pandas/ \
--workdir /aws-sdk-pandas/building/lambda \
--rm \
awswrangler-build-py38 \
build-lambda-layer.sh "${VERSION}-py3.8${ARCH_SUFFIX}" "ninja-build"
fi

# Python 3.9
if [[ $PYTHON_VERSION == "ALL" || $PYTHON_VERSION == "3.9" ]]
then
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ max-returns=6 # Maximum number of return / yield for function / method body.
max-statements=50 # Maximum number of statements in function / method body.

[tool.mypy]
python_version = "3.8"
python_version = "3.9"
strict = true
ignore_missing_imports = true
warn_unused_ignores = true
Expand Down
2 changes: 1 addition & 1 deletion test_infra/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Amazon Web Services"]
license = "Apache License 2.0"

[tool.poetry.dependencies]
python = ">=3.8, <4.0"
python = ">=3.9, <4.0"
"aws-cdk-lib" = "^2.128.0"
"aws-cdk.aws-glue-alpha" = "^2.128.0a0"
"aws-cdk.aws-neptune-alpha" = "^2.128.0a0"
Expand Down

0 comments on commit 69d7688

Please sign in to comment.