From bf88efbe0bcfca42564773502547dedae12df2c3 Mon Sep 17 00:00:00 2001 From: Caleb Ely Date: Thu, 9 Dec 2021 13:48:07 -0500 Subject: [PATCH] Update to Python 3.10 --- Dockerfile | 2 +- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77507cc..a5f62da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine +FROM python:3.10-slim # Set any env values we need ENV PYTHONPATH=/app diff --git a/README.md b/README.md index 72ebe19..6921bb2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ## Install -1. Install Python 3.9+ and [Poetry](https://poetry.eustace.io/) 1.1.0+ +1. Install [Python](https://www.python.org) 3.10+ and [Poetry](https://poetry.eustace.io/) 1.1.0+ 1. Set missing configuration keys in appropriate `configuration/*.json` files 1. Run `poetry install` 1. Launch the app using the provided VS Code launch configuration diff --git a/pyproject.toml b/pyproject.toml index 402577a..ae748ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Caleb "] license = "MIT" [tool.poetry.dependencies] -python = "^3.9" +python = "^3.10" webargs = "^8.0.1" flask = "^2.0.2" gunicorn = "20.1.0"