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

Commit f62c02f

Browse files
Merge pull request #18 from IntelPython/update/2020.1
Update to 2020.1
2 parents 80e63a5 + 1175298 commit f62c02f

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

configs/intelpython3_core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython3_core=2020.0 python=3 \
34+
&& conda install -y -q intelpython3_core=2020.1 python=3 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \

configs/intelpython3_core/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
1515

1616
Tags:
1717

18-
* 2019.4, latest
18+
* 2020.0
19+
* 2019.5
20+
* 2019.4
1921
* 2019.3
2022
* 2019.1-0
2123
* 2019.0.0-0b, 2019.0.0-0a, 2019.0.0-0, 2019.0.0
@@ -28,4 +30,4 @@ Tags:
2830
* 2017.0.3-0
2931
* 2017.0.2-0, 2017.0.2
3032
* 2017.0.1-1, 2017.0.1
31-
* 2017.0.0-2, 2017.0.0
33+
* 2017.0.0-2, 2017.0.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2020.0
4-
docker push $DOCKER_REPO:2020.0
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2020.1
4+
docker push $DOCKER_REPO:2020.1
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

configs/intelpython3_full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython3_full=2020.0 python=3 \
34+
&& conda install -y -q intelpython3_full=2020.1 python=3 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \

configs/intelpython3_full/README.md

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

55
Images:
66

7-
* intelpython2_core
8-
* intelpython2_full
97
* intelpython3_core
108
* intelpython3_full
119

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

14-
docker pull intelpython2_core:2017.0.3-1
12+
docker pull intelpython3_core:2017.0.3-1
1513

1614
Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
1715

1816
Tags:
1917

20-
* 2019.4, latest
18+
* 2020.0
19+
* 2019.5
20+
* 2019.4
2121
* 2019.3
2222
* 2019.1-0
2323
* 2019.0.0-0b, 2019.0.0-0a, 2019.0.0-0, 2019.0.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2020.0
4-
docker push $DOCKER_REPO:2020.0
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2020.1
4+
docker push $DOCKER_REPO:2020.1
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(self,pyver=None,package=None,build_number=None,name=None):
8080
self['package'] = package
8181
# github tag & docker tag is update_number-build_number, e.g. 2017.0.1-1
8282
# conda package spec is update_number=build_number, e.g. intelpython2_core=2017.0.1=1
83-
self['update_number'] = '2020.0'
83+
self['update_number'] = '2020.1'
8484
if build_number:
8585
self['build_number'] = '=' + str(build_number)
8686

tpls/tpl.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
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:4.5.4
26+
FROM continuumio/miniconda3:4.7.12
2727
MAINTAINER Robert Cohn <[email protected]>
2828

2929
# This file is automatically generated from tpl.Dockerfile

0 commit comments

Comments
 (0)