Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove python3.7 support #127

Merged
merged 5 commits into from
Feb 21, 2024
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
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
runtime:
- "java8"
- "provided"
- "python37"
- "go1x"
runs-on: ubuntu-latest
needs: [get-sam-cli-version]
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export DOCKER_CLI_EXPERIMENTAL := enabled
# image suffix lookup
IS_java8 := java8
IS_provided := provided
IS_python37 := python3.7
IS_go1x := go1.x
IS_dotnet6 := dotnet6
IS_dotnet7 := dotnet7
Expand Down
56 changes: 0 additions & 56 deletions build-image-src/Dockerfile-python37

This file was deleted.

1 change: 0 additions & 1 deletion build-image-src/build_all_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export DOCKER_CLI_EXPERIMENTAL=enabled
# Single arch images
docker build -f Dockerfile-java8 -t amazon/aws-sam-cli-build-image-java8:x86_64 --build-arg SAM_CLI_VERSION=$SAM_CLI_VERSION . &
docker build -f Dockerfile-provided -t amazon/aws-sam-cli-build-image-provided:x86_64 --build-arg SAM_CLI_VERSION=$SAM_CLI_VERSION . &
docker build -f Dockerfile-python37 -t amazon/aws-sam-cli-build-image-python3.7:x86_64 --build-arg SAM_CLI_VERSION=$SAM_CLI_VERSION . &
docker build -f Dockerfile-go1x -t amazon/aws-sam-cli-build-image-go1.x:x86_64 --build-arg SAM_CLI_VERSION=$SAM_CLI_VERSION . &
wait

Expand Down
1 change: 0 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
markers =
java8
provided
python37
go1x
dotnet6
dotnet7
Expand Down
244 changes: 0 additions & 244 deletions tests/apps/python3.7/sam-test-app/.gitignore

This file was deleted.

Empty file.
62 changes: 0 additions & 62 deletions tests/apps/python3.7/sam-test-app/events/event.json

This file was deleted.

Empty file.
Loading