Skip to content

Commit

Permalink
Upgrade pyopenssl
Browse files Browse the repository at this point in the history
to fix
/home/diracuser/diracos/lib/python3.9/site-packages/OpenSSL/crypto.py:1635: in X509StoreFlags
108
    NOTIFY_POLICY: int = _lib.X509_V_FLAG_NOTIFY_POLICY
109
E   AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'
  • Loading branch information
sverhoeven committed Mar 12, 2024
1 parent 4748df7 commit ffd8683
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests_dirac/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/xenon-middleware/diracclient:8.0.18

RUN pip install poetry==1.5.1 && \
RUN pip install poetry==1.8.2 && \
pip install --upgrade pip wheel setuptools

# Configuring poetry
Expand All @@ -12,4 +12,4 @@ WORKDIR /workspace
COPY pyproject.toml poetry.lock ./

# Installing requirements
RUN poetry install --no-root --no-interaction --no-ansi
RUN poetry install --no-root --no-interaction --no-ansi && pip3 install pyOpenSSL --upgrade

0 comments on commit ffd8683

Please sign in to comment.