Skip to content

Commit 65917e5

Browse files
committed
cx_oracle: Limit installed Version to <8.0
The newer versions of cx_oracle could not be installed with pip2 without Python3. he change to Python3 needs more tests in ansible-oracle-modules. This is a quick fix to install cx_Oracle with pip2 for ansible-oracle.
1 parent 4fb06e3 commit 65917e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/cxoracle/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
---
33
- name: Install cx_oracle
44
pip:
5-
name=cx_oracle
5+
name=cx_oracle<8.0
66
extra_args="{{ extra_args }}"
77
umask={{ cx_oracle_umask | default (omit)}}
88
state=present

0 commit comments

Comments
 (0)