Robert Schweikert
c1f23a8803
- Update to version 2.12.10 * Support for searching Oracle Cloud resources across tenancies in the Search Service * ``oci search resource free-text-search --tenant-id`` * ``oci search resource structured-search --tenant-id`` * Support for Management Agent Cloud Service * ``oci management-agent`` * Support for sending diagnostic interrupt to a VM instance in the Compute Service * ``oci compute instance action --action SENDDIAGNOSTICINTERRUPT --instance-id`` * Support for custom Database Software Images in the Database Service * ``oci db database-software-image`` * Support for Management Dashboard Service * ``oci management-dashboard`` * Support for Logging Analytics Service * `oci log-analytics` * Support for Logging Service * ``oci logging`` * Support for Logging Ingestion Service * ``oci logging-ingestion`` * Support for Logging Search Service * ``oci logging-search`` * Support for Service Connector Hub service * ``oci sch`` * Support for getting and listing container database patches for Autonomous Container Database resources in the Database Service * ``oci db autonomous-patch get --autonomous-patch-id`` * ``oci db autonomous-patch list-container-database-patches --autonomous-container-database-id`` * Support for updating patch id on maintenance run for Autonomous Container Database resources in the Database Service * ``oci db maintenance-run update --patch-id`` * Support for Policy based Request/Response transformation OBS-URL: https://build.opensuse.org/request/show/833318 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=12
118 lines
2.6 KiB
Diff
118 lines
2.6 KiB
Diff
diff -Nru oci-cli-2.12.10.orig/requirements.txt oci-cli-2.12.10/requirements.txt
|
|
--- oci-cli-2.12.10.orig/requirements.txt 2020-09-08 23:07:04.000000000 +0200
|
|
+++ oci-cli-2.12.10/requirements.txt 2020-09-09 15:05:11.806942865 +0200
|
|
@@ -2,40 +2,39 @@
|
|
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
|
|
# you may need to use the --extra-index-url option instead.
|
|
|
|
-appdirs==1.4.3
|
|
-arrow==0.14.7
|
|
+appdirs>=1.4.3
|
|
+arrow>=0.14.7
|
|
certifi
|
|
cffi>=1.9.1
|
|
-click==6.7
|
|
-configparser==4.0.2
|
|
-coverage==4.5.2
|
|
-cryptography==2.8
|
|
-httpsig-cffi==15.0.0
|
|
-Jinja2==2.10.1
|
|
-jmespath==0.10.0
|
|
-ndg-httpsclient==0.4.2
|
|
-mock==2.0.0
|
|
-oci==2.21.3
|
|
-packaging==20.2
|
|
-pluggy==0.4.0
|
|
-py==1.4.33
|
|
-pyasn1==0.2.3
|
|
-pyOpenSSL==18.0.0
|
|
-pycparser==2.17
|
|
-pyparsing==2.2.0
|
|
-pytest==3.2.3
|
|
-pytest-cov==2.5.1
|
|
-python-dateutil>=2.5.3,<3.0.0
|
|
+click>=6.7
|
|
+coverage>=4.5.2
|
|
+cryptography>=2.8
|
|
+httpsig-cffi>=15.0.0
|
|
+Jinja2>=2.10.1
|
|
+jmespath>=0.10.0
|
|
+ndg-httpsclient>=0.4.2
|
|
+mock>=2.0.0
|
|
+oci>=2.21.3
|
|
+packaging>=20.2
|
|
+pluggy>=0.4.0
|
|
+py>=1.4.33
|
|
+pyasn1>=0.2.3
|
|
+pyOpenSSL>=18.0.0
|
|
+pycparser>=2.17
|
|
+pyparsing>=2.2.0
|
|
+pytest>=3.2.3
|
|
+pytest-cov>=2.5.1
|
|
+python-dateutil>=2.5.3
|
|
pytz>=2016.10
|
|
-requests==2.21.0
|
|
-retrying==1.3.3
|
|
-six==1.14.0
|
|
-sphinx==1.6.4
|
|
-sphinx-rtd-theme==0.2.5b1
|
|
-terminaltables==3.1.0
|
|
-tox==2.9.1
|
|
-vcrpy==1.13.0
|
|
-virtualenv==15.1.0
|
|
-pytest-xdist==1.22.2
|
|
-pytest-forked==1.0.2
|
|
-PyYAML==5.1.2
|
|
+requests>=2.21.0
|
|
+retrying>=1.3.3
|
|
+six>=1.14.0
|
|
+sphinx>=1.6.4
|
|
+sphinx-rtd-theme>=0.2.5b1
|
|
+terminaltables>=3.1.0
|
|
+tox>=2.9.1
|
|
+vcrpy>=1.13.0
|
|
+virtualenv>=15.1.0
|
|
+pytest-xdist>=1.22.2
|
|
+pytest-forked>=1.0.2
|
|
+PyYAML>=5.1.2
|
|
diff -Nru oci-cli-2.12.10.orig/setup.py oci-cli-2.12.10/setup.py
|
|
--- oci-cli-2.12.10.orig/setup.py 2020-09-08 23:07:04.000000000 +0200
|
|
+++ oci-cli-2.12.10/setup.py 2020-09-09 15:05:23.306985550 +0200
|
|
@@ -30,24 +30,23 @@
|
|
readme = f.read()
|
|
|
|
requires = [
|
|
- 'oci==2.21.3',
|
|
- 'arrow==0.14.7',
|
|
+ 'oci>=2.21.3',
|
|
+ 'arrow>=0.14.7',
|
|
'certifi',
|
|
- 'click==6.7',
|
|
- 'configparser==4.0.2',
|
|
- 'cryptography==2.8',
|
|
- 'jmespath==0.10.0',
|
|
- 'python-dateutil>=2.5.3,<3.0.0',
|
|
+ 'click>=6.7',
|
|
+ 'cryptography>=2.8',
|
|
+ 'jmespath>=0.10.0',
|
|
+ 'python-dateutil>=2.5.3',
|
|
'pytz>=2016.10',
|
|
- 'retrying==1.3.3',
|
|
- 'six==1.14.0',
|
|
- 'terminaltables==3.1.0',
|
|
- 'pyOpenSSL==18.0.0',
|
|
- 'PyYAML==5.1.2'
|
|
+ 'retrying>=1.3.3',
|
|
+ 'six>=1.14.0',
|
|
+ 'terminaltables>=3.1.0',
|
|
+ 'pyOpenSSL>=18.0.0',
|
|
+ 'PyYAML>=5.1.2'
|
|
]
|
|
|
|
extras = {
|
|
- 'db': ['cx_Oracle==7.0']
|
|
+ 'db': ['cx_Oracle>=7.0']
|
|
}
|
|
|
|
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")
|