-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python 3.13 is released. Python 3.8 is EOL as of October 2024.
- Loading branch information
Showing
9 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,21 +112,6 @@ RUN for whl in /opt/src/dist/*.whl; do \ | |
&& du -hs /opt/src/dist/* \ | ||
&& du -hs /wheelhouse/* | ||
|
||
# test in fresh env: Debian:Sid + Python 3.8 | ||
FROM debian:sid | ||
ENV DEBIAN_FRONTEND noninteractive | ||
COPY --from=build-env /wheelhouse/openPMD_api-*-cp38-cp38-manylinux2010_x86_64.whl . | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends python3.8 python3-distutils ca-certificates curl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
RUN python3.8 --version \ | ||
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ | ||
&& python3.8 get-pip.py \ | ||
&& python3.8 -m pip install openPMD_api-*-cp38-cp38-manylinux2010_x86_64.whl | ||
RUN python3.8 -c "import openpmd_api as io; print(io.__version__); print(io.variants)" | ||
RUN python3.8 -m openpmd_api.ls --help | ||
RUN openpmd-ls --help | ||
|
||
# test in fresh env: Debian:Bullseye + Python 3.9 | ||
FROM debian:bullseye | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
@@ -187,6 +172,21 @@ RUN python3.12 -c "import openpmd_api as io; print(io.__version__); print | |
RUN python3.12 -m openpmd_api.ls --help | ||
RUN openpmd-ls --help | ||
|
||
# test in fresh env: Debian:Bullseye + Python 3.13 | ||
FROM debian:bullseye | ||
ENV DEBIAN_FRONTEND noninteractive | ||
COPY --from=build-env /wheelhouse/openPMD_api-*-cp313-cp313-manylinux2010_x86_64.whl . | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends python3.13 python3-distutils ca-certificates curl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
RUN python3.13 --version \ | ||
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ | ||
&& python3.13 get-pip.py \ | ||
&& python3.13 -m pip install openPMD_api-*-cp313-cp313-manylinux2010_x86_64.whl | ||
RUN python3.13 -c "import openpmd_api as io; print(io.__version__); print(io.variants)" | ||
RUN python3.13 -m openpmd_api.ls --help | ||
RUN openpmd-ls --help | ||
|
||
# copy binary artifacts (wheels) | ||
FROM quay.io/pypa/manylinux2010_x86_64 | ||
MAINTAINER Axel Huebl <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters