Skip to content

Commit

Permalink
Add Python 3.12, set this version as default
Browse files Browse the repository at this point in the history
  • Loading branch information
jwkaltz committed Oct 25, 2023
1 parent 64e8acd commit 516b2e5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Set up Python v${{ matrix.python-version }}
Expand Down Expand Up @@ -114,10 +115,10 @@ jobs:
needs: [lint, gitattributes]
steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.12
- name: Install pypa/build
run: >-
python -m
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/daily_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
- python3.9
- python3.10
- python3.11
- python3.12
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- run: sudo rm /etc/apt/sources.list.d/*.list
Expand All @@ -55,10 +56,10 @@ jobs:
env:
PYTHON_TEST_VERSION: ${{ matrix.python-version }}
run: make tests
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.12
- name: Install pypa/build
run: >-
python -m
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM python:3.11-buster
FROM python:3.12-buster

ENV DEBIAN_FRONTEND=noninteractive
ENV VIRTUALENV_PYTHON=/usr/bin/python3.8

ARG DEV_PACKAGES="build-essential"

Expand Down

0 comments on commit 516b2e5

Please sign in to comment.