File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change
1
+ # entries is a list of entries to include in
2
+ # release notes and/or the migration guide
3
+ entries :
4
+ - description : >
5
+ (ansible/v1) Pin all top level Python requirements. This fixes a bug that
6
+ erroneously installed Ansible 2.10.z instead of Ansible 2.9.z.
7
+
8
+ kind: "bugfix"
9
+ breaking: false
Original file line number Diff line number Diff line change @@ -17,12 +17,13 @@ RUN yum clean all && rm -rf /var/cache/yum/* \
17
17
&& yum -y update \
18
18
&& yum install -y libffi-devel openssl-devel python36-devel gcc python3-pip python3-setuptools \
19
19
&& pip3 install --no-cache-dir \
20
- ipaddress \
21
20
ansible-runner==1.3.4 \
22
21
ansible-runner-http==1.0.0 \
23
- openshift~=0.10.0 \
24
- ansible~=2.9 \
25
- jmespath \
22
+ ipaddress==1.0.23 \
23
+ kubernetes==10.1.0 \
24
+ openshift==0.10.3 \
25
+ ansible==2.9.15 \
26
+ jmespath==0.10.0 \
26
27
&& yum remove -y gcc libffi-devel openssl-devel python36-devel \
27
28
&& yum clean all \
28
29
&& rm -rf /var/cache/yum
You can’t perform that action at this time.
0 commit comments