Merge pull request #193 from cooperlees/py311

Build Docker image with 3.10
Kaveen Kumarasinghe 1 year ago committed by GitHub
commit c908c14622
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
python-version: ["3.9"] python-version: ["3.9", "3.10"]
os: [macOS-latest, ubuntu-latest, windows-latest] os: [macOS-latest, ubuntu-latest, windows-latest]
steps: steps:
@ -28,4 +28,4 @@ jobs:
- name: Install deps via requirements + module via pyproject.toml - name: Install deps via requirements + module via pyproject.toml
run: | run: |
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python -m pip install . python -m pip install .

@ -1,4 +1,4 @@
ARG PY_VERSION=3.9 ARG PY_VERSION=3.10
# Build container # Build container
FROM python:${PY_VERSION} as base FROM python:${PY_VERSION} as base

Loading…
Cancel
Save