Skip to content

Commit

Permalink
Merge pull request #193 from cooperlees/py311
Browse files Browse the repository at this point in the history
Build Docker image with 3.10
  • Loading branch information
Kav-K authored Mar 12, 2023
2 parents 20cecb8 + 6b4c638 commit c908c14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10"]
os: [macOS-latest, ubuntu-latest, windows-latest]

steps:
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Install deps via requirements + module via pyproject.toml
run: |
python -m pip install -r requirements.txt
python -m pip install .
python -m pip install .
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PY_VERSION=3.9
ARG PY_VERSION=3.10

# Build container
FROM python:${PY_VERSION} as base
Expand Down

0 comments on commit c908c14

Please sign in to comment.