Skip to content

Commit 7db209b

Browse files
committed
fix missing 3.13 support in ec2 workflow
1 parent fb6e1d3 commit 7db209b

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)