aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml6
-rw-r--r--Dockerfile3
2 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c71c613..1539046 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -17,13 +17,11 @@ jobs:
build:
strategy:
matrix:
- python_version: ["3.9", 3.9-slim, "3.10", 3.10-slim, "3.11", 3.11-slim, "3", 3-slim]
+ python_version: ["3.9", 3.9-slim, "3.10", 3.10-slim, "3.11", 3.11-slim, 3.12-rc, "3", 3-slim]
experimental: [false]
include:
- - python_version: 3.12-rc
- experimental: true
- python_version: 3.12-rc-slim
- experimental: true
+ experimental: true # This is expected to fail due to cffi not having 3.12 wheels and -slim not having gcc
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
steps:
diff --git a/Dockerfile b/Dockerfile
index 1347272..31cc7f9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,4 +17,5 @@ RUN apt-get update \
&& apt-get install --no-install-recommends -y curl \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
-RUN curl -sSL https://install.python-poetry.org | python
+RUN curl -sSL https://install.python-poetry.org | python ; exit 0
+RUN cat /poetry-installer-error-*.log