diff options
author | 2022-08-23 20:48:26 +0100 | |
---|---|---|
committer | 2022-09-21 23:02:54 +0100 | |
commit | 31dfe02377e90582c1a7ecd0f7df566aa7b05d51 (patch) | |
tree | 23869e3257239638302866ca1d43db13f6f63e46 | |
parent | Add bot core as a dep and bump all deps (diff) |
Upgrade to Python 3.10
-rw-r--r-- | .github/workflows/lint.yaml | 3 | ||||
-rw-r--r-- | Dockerfile | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 8bfe25fa..fd41e972 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -35,7 +35,7 @@ jobs: uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1 with: dev: true - python_version: "3.9" + python_version: "3.10" # Check all of our dev dependencies are compatible with the MIT license. # If you added a new dependencies that is being rejected, @@ -54,7 +54,6 @@ jobs: USE_FAKEREDIS: true IN_CI: true - # We will not run `flake8` here, as we will use a separate flake8 # action. - name: Run pre-commit hooks @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 ghcr.io/chrislovering/python-poetry-base:3.9-slim +FROM --platform=linux/amd64 ghcr.io/chrislovering/python-poetry-base:3.10-slim # Install dependencies WORKDIR /bot |