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

Commit 472e5cf

Browse files
committed
2017.0.1 release
1 parent 0130d35 commit 472e5cf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Will build every image. Look at the test for example command lines.
1818
## Publishing a new release
1919

2020
* Change release name in images.py, and add it to tpls/tpl.README.md
21-
* Update the READMEs for the individual images
21+
* Update the READMEs and Dockerfiles for the individual images
2222

2323
python images.py --gen all
2424

configs/intelpython2_core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ MAINTAINER Robert Cohn <[email protected]>
66
ENV ACCEPT_INTEL_PYTHON_EULA=yes
77

88
RUN conda config --add channels intel \
9-
&& conda install -y -q intelpython2_core=2017.0.0 python=2
9+
&& conda install -y -q intelpython2_core=2017.0.1 python=2

configs/intelpython2_full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ MAINTAINER Robert Cohn <[email protected]>
66
ENV ACCEPT_INTEL_PYTHON_EULA=yes
77

88
RUN conda config --add channels intel \
9-
&& conda install -y -q intelpython2_full=2017.0.0 python=2
9+
&& conda install -y -q intelpython2_full=2017.0.1 python=2

configs/intelpython3_core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ MAINTAINER Robert Cohn <[email protected]>
66
ENV ACCEPT_INTEL_PYTHON_EULA=yes
77

88
RUN conda config --add channels intel \
9-
&& conda install -y -q intelpython3_core=2017.0.0 python=3
9+
&& conda install -y -q intelpython3_core=2017.0.1 python=3

configs/intelpython3_full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ MAINTAINER Robert Cohn <[email protected]>
66
ENV ACCEPT_INTEL_PYTHON_EULA=yes
77

88
RUN conda config --add channels intel \
9-
&& conda install -y -q intelpython3_full=2017.0.0 python=3
9+
&& conda install -y -q intelpython3_full=2017.0.1 python=3

images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self,pyver=None,package=None,name=None):
5050
(pyver,package) = parse_name(name)
5151
self['pyver'] = pyver
5252
self['package'] = package
53-
self['release'] = '2017.0.0'
53+
self['release'] = '2017.0.1'
5454

5555
def name(self):
5656
return 'intelpython%d_%s' % (self['pyver'],self['package'])

0 commit comments

Comments
 (0)