Skip to content

Commit

Permalink
v0.6.9k
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRand0m1z3r committed Feb 15, 2024
1 parent 41d6c0e commit f979c7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PythonInterface/Dockerfile.manylinux
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUN cp /usr/local/cuda-11.3/targets/x86_64-linux/lib/libcurand.so.10 /output
RUN cp /usr/local/cuda-11.3/targets/x86_64-linux/lib/libcudart.so.11.0 /output

# Step 2 - build the Python API
FROM quay.io/pypa/manylinux_2_24_x86_64 AS python
FROM quay.io/pypa/manylinux_2_28_x86_64 AS python
WORKDIR /src/PythonInterface

ARG GITHUB_VERSION
Expand All @@ -66,7 +66,7 @@ ENV GITHUB_VERSION=$GITHUB_VERSION
COPY --from=cplusplus /output /src/PythonInterface/lib
COPY ./PythonInterface/requirements.txt /src/PythonInterface/requirements.txt
# Install all requirements for all Python versions
RUN /opt/python/cp38-cp38/bin/pip install -r requirements.txt
# RUN /opt/python/cp38-cp38/bin/pip install -r requirements.txt
RUN /opt/python/cp39-cp39/bin/pip install -r requirements.txt
RUN /opt/python/cp310-cp310/bin/pip install -r requirements.txt
RUN /opt/python/cp311-cp311/bin/pip install -r requirements.txt
Expand All @@ -81,10 +81,10 @@ COPY ./Conversions /src/Conversions
COPY ./PythonInterface /src/PythonInterface

# Prepare for building the wheel - precompile pyx files and move header files around
RUN /opt/python/cp38-cp38/bin/python setup.py prepare
RUN /opt/python/cp39-cp39/bin/python setup.py prepare

# Now we can build all the wheels
RUN /opt/python/cp38-cp38/bin/pip wheel .
# RUN /opt/python/cp38-cp38/bin/pip wheel .
RUN /opt/python/cp39-cp39/bin/pip wheel .
RUN /opt/python/cp310-cp310/bin/pip wheel .
RUN /opt/python/cp311-cp311/bin/pip wheel .
Expand Down

0 comments on commit f979c7c

Please sign in to comment.