Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit ea5b676

Browse files
Update to 2025.0.0 (py312)
1 parent a3368e3 commit ea5b676

File tree

9 files changed

+8
-101
lines changed

9 files changed

+8
-101
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- IDP_CONF: intelpython3_core
1817
- IDP_CONF: intelpython3_full
1918
steps:
2019
- uses: actions/checkout@v2

.github/workflows/publish.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,12 @@ jobs:
2222
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
2323
password: ${{ secrets.DOCKER_LOGIN_PASSWORD }}
2424

25-
- name: Extract intelpython3_core metadata (tags, labels) for Docker
26-
id: meta_core
27-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
28-
with:
29-
images: intelpython/intelpython3_core
30-
3125
- name: Extract intelpython3_full metadata (tags, labels) for Docker
3226
id: meta_full
3327
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
3428
with:
3529
images: intelpython/intelpython3_full
3630

37-
- name: Build and push Docker image for intelpython3_core
38-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
39-
with:
40-
context: configs/intelpython3_core
41-
push: true
42-
tags: ${{ steps.meta_core.outputs.tags }}
43-
labels: ${{ steps.meta_core.outputs.labels }}
44-
4531
- name: Build and push Docker image for intelpython3_full
4632
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
4733
with:

configs/intelpython3_core/Dockerfile

Lines changed: 0 additions & 31 deletions
This file was deleted.

configs/intelpython3_core/README.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

configs/intelpython3_core/docker-compose.test.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

configs/intelpython3_core/hooks/post_push

Lines changed: 0 additions & 7 deletions
This file was deleted.

configs/intelpython3_full/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2424
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

26-
FROM continuumio/miniconda3
26+
FROM condaforge/mambaforge
2727

28-
29-
RUN conda config --add channels intel
30-
RUN conda install -y -q intelpython3_full=2023.1
28+
RUN conda config --add channels https://software.repos.intel.com/python/conda
29+
RUN conda config --add channels conda-forge
30+
RUN conda install -y -q intelpython3_full=2025.0 python=3.12
3131
RUN conda clean --all

configs/intelpython3_full/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ The image defaults to starting with a bash shell. Intel Python is on the path. T
44

55
Images:
66

7-
* intelpython3_core
87
* intelpython3_full
98

109
You usually want the 'latest' tag, but the docker image tag can be used to request a specific package. For example:
1110

12-
docker pull intelpython3_core:2017.0.3-1
11+
docker pull intelpython3_full:2017.0.3-1
1312

14-
Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
13+
Will get an image that uses the conda package: intelpython3_full-2017.0.3-1
1514

1615
Tags:
1716

tpls/tpl.README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ The image defaults to starting with a bash shell. Intel Python is on the path. T
44

55
Images:
66

7-
* intelpython3_core
87
* intelpython3_full
98

109
You usually want the 'latest' tag, but the docker image tag can be used to request a specific package. For example:
1110

12-
docker pull intelpython3_core:2017.0.3-1
11+
docker pull intelpython3_full:2017.0.3-1
1312

14-
Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
13+
Will get an image that uses the conda package: intelpython3_full-2017.0.3-1
1514

1615
Tags:
1716

0 commit comments

Comments
 (0)