Skip to content

Commit

Permalink
Add Python 3.11 to built matrix and Docker
Browse files Browse the repository at this point in the history
After bumping the pyproject.toml to support 3.11, the tests have now been
updated to test both 3.10 and 3.11 in the build matrix. We're now using 3.11 in
the Docker file.
  • Loading branch information
criccomini committed Feb 29, 2024
1 parent 26ca123 commit c60dcf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
python-version: '3.11'

# Publish to PyPI
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Python base image
FROM python:3.10
FROM python:3.11

ARG RECAP_VERSION

Expand Down

0 comments on commit c60dcf2

Please sign in to comment.