From d4cc665df414a40c3dd53543a98cdab9ba2136d0 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Mon, 11 Jul 2022 16:58:20 +0000 Subject: [PATCH] fix: add pexpect to requirements, bump Python to 3.10 --- Dockerfile | 4 ++-- pyproject.toml | 1 + requirements.txt | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5c7c4f2..4055ab1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -ARG RUNTIME_VERSION="3.9" +ARG RUNTIME_VERSION="3.10" ARG DISTRO_VERSION="3.16" -ARG PULUMI_VERSION="3.35.1" +ARG PULUMI_VERSION="3.35.3" FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder ARG PULUMI_VERSION diff --git a/pyproject.toml b/pyproject.toml index c9f0f7f..a139397 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ dependencies = [ "mock", "Jinja2>=3.0.0", "click", + "pexpect", "cfn-lint>=0.34", "python-minifier", "pulumi>=3.35.0", diff --git a/requirements.txt b/requirements.txt index 5e8725f..2fef9e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,7 @@ boto3 mock Jinja2>=3.0.0 click +pexpect python-minifier cfn-lint>=0.34 pulumi>=3.35.0