From 41dd9f02064a385f19d6db74cd0386d869ababf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 08:09:03 +0000 Subject: [PATCH 1/2] Bump numpy from 1.21.4 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.4 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.21.4...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 43bbfbd..f8029a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ Jinja2==3.0.2 jsonschema==4.2.1 MarkupSafe==2.0.1 mypy-extensions==0.4.3 -numpy==1.21.4 +numpy==1.22.0 pandas==1.3.4 pathspec==0.9.0 platformdirs==2.4.0 From 3edb402b72b4605010d5ce88c909a8f20156c23c Mon Sep 17 00:00:00 2001 From: JWittmeyer <91723236+JWittmeyer@users.noreply.github.com> Date: Fri, 12 Aug 2022 13:34:21 +0200 Subject: [PATCH 2/2] bump python to 3.9 --- Dockerfile | 2 +- dev.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41f65ac..7d7d244 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.7 +FROM python:3.9 WORKDIR /program diff --git a/dev.Dockerfile b/dev.Dockerfile index a611fed..c47097c 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 +FROM python:3.9 WORKDIR /app