From 3d1a21c8f729a6bf14115755d7dc6d88d091b288 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 21:09:36 -0800 Subject: [PATCH] build(deps): bump flask from 1.1.2 to 2.2.5 in /tests/testapp (#432) * build(deps): bump flask from 1.1.2 to 2.2.5 in /tests/testapp Bumps [flask](https://github.com/pallets/flask) from 1.1.2 to 2.2.5. - [Release notes](https://github.com/pallets/flask/releases) - [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/flask/compare/1.1.2...2.2.5) --- updated-dependencies: - dependency-name: flask dependency-type: direct:production ... Signed-off-by: dependabot[bot] * update to py 3 in dockerfile --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matjaz Pirnovar --- tests/testapp/Dockerfile | 2 +- tests/testapp/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testapp/Dockerfile b/tests/testapp/Dockerfile index 3a146d7b..1042c462 100644 --- a/tests/testapp/Dockerfile +++ b/tests/testapp/Dockerfile @@ -1,4 +1,4 @@ -FROM python:2.7.10 +FROM python:3.11 LABEL maintainer="developers@optimizely.com" diff --git a/tests/testapp/requirements.txt b/tests/testapp/requirements.txt index 46a48dd9..4b70123b 100644 --- a/tests/testapp/requirements.txt +++ b/tests/testapp/requirements.txt @@ -1 +1 @@ -Flask==1.1.2 +Flask==2.2.5