Skip to content

Commit 6847ac3

Browse files
authored
Add Missing Python 3.13 support in Part of the EC2 workflow (#417)
## What does this pull request do? Missed adding Python 3.13 support in one part of the EC2 workflow: #415 This should fix the EC2 failure in [main build](https://github.com/aws-observability/aws-otel-python-instrumentation/actions/runs/15741464564/job/44371235567). By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 18ffde1 commit 6847ac3

File tree

1 file changed

+1
-1
lines changed
  • terraform/python/ec2/default

1 file changed

+1
-1
lines changed

terraform/python/ec2/default/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ resource "null_resource" "remote_service_setup" {
249249
# Dnf does not have the module for python 3.10, 3,10, 3.12, therefore we need to manually install it by downloading the package from the python website.
250250
# Building and installing the package takes longer then installing it through dnf, so a seperate installation process was made.
251251
# The canary should run on a version without the manual installation process
252-
if [ "${var.language_version}" == "3.8" ] || [ "${var.language_version}" = "3.10" ] || [ "${var.language_version}" = "3.12" ]; then
252+
if [ "${var.language_version}" == "3.8" ] || [ "${var.language_version}" = "3.10" ] || [ "${var.language_version}" = "3.12" ] || [ "${var.language_version}" = "3.13" ]; then
253253
# Install modules required to compile Python and also run the sample app
254254
sudo dnf groupinstall "Development Tools" -y
255255
sudo dnf install openssl-devel sqlite-devel libffi-devel -y

0 commit comments

Comments
 (0)