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

Commit 9ec2055

Browse files
committed
2017.0.1 release
1 parent d4685ff commit 9ec2055

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ There is 1 subdirectory for every image to build.
55

66
## testing
77

8-
python -m pytest tests
8+
python -m pytest tests
99

1010
Will build every image.
1111

@@ -21,23 +21,23 @@ Will build every image.
2121
* Edit docker_repo.README.md
2222
* Copy to all repos
2323

24-
PYTHONPATH=. scripts/update_readmes.py
24+
PYTHONPATH=. python scripts/update_readmes.py
2525

2626
## Publishing a new release
2727

2828
* Edit the Dockerfiles to refer to the new release
2929
* Commit changes
3030
* Tag with the release name
3131

32-
git tag -a 2017.0.0 -m 'new release'
32+
git tag -a 2017.0.0 -m 'new release'
3333

34-
* On dockerhub, edit build settings for all repos to change build rule that generates the image with the latest tag
3534
* Push changes, this will trigger testing on travis-ci
3635

37-
git push
36+
git push
3837

38+
* On dockerhub, edit build settings for all repos to change build rule that generates the image with the latest tag
3939
* When travis-ci testing completes, push the tag
4040

41-
git push origin 2017.0.0
41+
git push origin 2017.0.0
4242

4343
* Check later that all builds have completed on docker hub

docker_repo.README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Docker images for [Intel Distribution for
2-
Python](https://software.intel.com/en-us/intel-distribution-for-python)
1+
Docker images for [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
32

43
Images:
54

@@ -11,7 +10,8 @@ Images:
1110
The core images are based on intelpython{2,3}_core and the full images are
1211
based on intelpython{2,3}_core.
1312

14-
Python is on the path
13+
The image will start with a bash shell and python on the path
14+
1515

1616

1717

idp2_core/Dockerfile

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

77
RUN conda config --add channels intel \
8-
&& conda create -y -q -n idp intelpython2_core=2017.0.0 python=2
8+
&& conda create -y -q -n idp intelpython2_core=2017.0.1 python=2
99

1010
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp2_core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Docker images for [Intel Distribution for
2-
Python](https://software.intel.com/en-us/intel-distribution-for-python)
1+
Docker images for [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
32

43
Images:
54

@@ -11,7 +10,8 @@ Images:
1110
The core images are based on intelpython{2,3}_core and the full images are
1211
based on intelpython{2,3}_core.
1312

14-
Python is on the path
13+
The image will start with a bash shell and python on the path
14+
1515

1616

1717

idp2_full/Dockerfile

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

77
RUN conda config --add channels intel \
8-
&& conda create -y -q -n idp intelpython2_full=2017.0.0 python=2
8+
&& conda create -y -q -n idp intelpython2_full=2017.0.1 python=2
99

1010
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp2_full/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Docker images for [Intel Distribution for
2-
Python](https://software.intel.com/en-us/intel-distribution-for-python)
1+
Docker images for [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
32

43
Images:
54

@@ -11,7 +10,8 @@ Images:
1110
The core images are based on intelpython{2,3}_core and the full images are
1211
based on intelpython{2,3}_core.
1312

14-
Python is on the path
13+
The image will start with a bash shell and python on the path
14+
1515

1616

1717

idp3_core/Dockerfile

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

77
RUN conda config --add channels intel \
8-
&& conda create -y -q -n idp intelpython3_core=2017.0.0 python=3
8+
&& conda create -y -q -n idp intelpython3_core=2017.0.1 python=3
99

1010
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp3_core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Docker images for [Intel Distribution for
2-
Python](https://software.intel.com/en-us/intel-distribution-for-python)
1+
Docker images for [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
32

43
Images:
54

@@ -11,7 +10,8 @@ Images:
1110
The core images are based on intelpython{2,3}_core and the full images are
1211
based on intelpython{2,3}_core.
1312

14-
Python is on the path
13+
The image will start with a bash shell and python on the path
14+
1515

1616

1717

idp3_full/Dockerfile

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

77
RUN conda config --add channels intel \
8-
&& conda create -y -q -n idp intelpython3_full=2017.0.0 python=3
8+
&& conda create -y -q -n idp intelpython3_full=2017.0.1 python=3
99

1010
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp3_full/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Docker images for [Intel Distribution for
2-
Python](https://software.intel.com/en-us/intel-distribution-for-python)
1+
Docker images for [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
32

43
Images:
54

@@ -11,7 +10,8 @@ Images:
1110
The core images are based on intelpython{2,3}_core and the full images are
1211
based on intelpython{2,3}_core.
1312

14-
Python is on the path
13+
The image will start with a bash shell and python on the path
14+
1515

1616

1717

0 commit comments

Comments
 (0)