From 7bbfd45341d080212354eee13d4bd2a6f6544048 Mon Sep 17 00:00:00 2001 From: Youhei Sakurai Date: Wed, 17 Jul 2024 11:37:24 +0900 Subject: [PATCH] Add --break-system-packages to pip in Dockerfile --- Dockerfile | 2 +- shukujitsu/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 64c0dc8..8e8780a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ LABEL maintainer="sakurai.youhei@gmail.com" COPY --from=build-env /src/dist /tmp/dist RUN apk add --no-cache py3-pip && \ - pip3 install /tmp/dist/*.whl && \ + pip3 install /tmp/dist/*.whl --break-system-packages && \ rm -rf /tmp/dist/ RUN apk add --no-cache tini diff --git a/shukujitsu/__init__.py b/shukujitsu/__init__.py index 1efe851..e8a66e0 100644 --- a/shukujitsu/__init__.py +++ b/shukujitsu/__init__.py @@ -25,7 +25,7 @@ THE SOFTWARE. """ -__version__ = "2024.7.17" +__version__ = "2024.7.17.post1" # aliases JP = JPN = Japan assert __version__ and CountryHoliday and Japan and JP and JPN