Skip to content

Commit

Permalink
use python3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
scrungus committed Jun 26, 2024
1 parent 14f7310 commit 8f1b34f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.10']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:jammy as build-image

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install --no-install-recommends python3.12-venv git -y && \
apt-get install --no-install-recommends python3.10-venv git -y && \
rm -rf /var/lib/apt/lists/*

# build into a venv we can copy across
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist = py3,black,pep8
skipsdist = True

[testenv]
basepython = python3.12
basepython = python3.10
usedevelop = True
setenv =
PYTHONWARNINGS=default::DeprecationWarning
Expand Down

0 comments on commit 8f1b34f

Please sign in to comment.