From dbb77dbfa432e2c8aff06f1aff167f9f1ef77722 Mon Sep 17 00:00:00 2001 From: Eva Lott Date: Thu, 29 Feb 2024 11:48:36 +0000 Subject: [PATCH] fixed dockerfile --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 -- pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 888eb4d8..f45e2aaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] include: # Include one that runs in the dev environment - runs-on: "ubuntu-latest" diff --git a/Dockerfile b/Dockerfile index 8244c0d2..e62863b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,8 @@ FROM ${REGISTRY}/epics-base-linux-developer:${BASE} AS developer ARG PIP_OPTIONS=. # The build stage installs the context into the venv -FROM developer as build COPY . /context WORKDIR /context -RUN pip install . # install python package into /venv RUN pip install ${PIP_OPTIONS} diff --git a/pyproject.toml b/pyproject.toml index 54da6f98..6d0de70f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2"] +requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2", wheel] build-backend = "setuptools.build_meta" [project]