oci-cli/oc_relax-python-depends.patch
Dirk Mueller 884910f3f6 Accepting request 893103 from home:glaubitz:branches:Cloud:Tools
- Update to version 2.24.4
  * Support for database maintenance run patchMode feature as a part of the Database Service
    * ``oci db maintenance-run``
  * PyYAML was upgraded to version 5.4.1 to address a vulnerability identified on GitHub as CVE-2020-14343  
  * Py was upgraded to version 1.10.0 to address a vulnerability identified on GitHub as CVE-2020-29651.
    Py isn't used in our run-time system but as part of our documentation build process.
- from version 2.24.3
  * Options for configuring config path and profile name for session authentication
    * ``oci session authenticate --profile-name --config-location``
  * Support for the Operator Access Control service
   * ``oci opctl``
  * Support for the Service Catalog service
   * ``oci service-catalog``
  * Support for the AI Language service
   * ``oci ai language``
  * Wait for state parameter for the following database commands were returning on incorrect states
    * oci db database create --wait-for-state
    * oci db database create-from-backup --wait-for-state
    * oci db database create-from-database --wait-for-state
    * oci db db-home create --wait-for-state
- from version  2.24.2
  * Support for data masking and other enhancements in the Cloud Guard service
    * ``oci cloud-guard data-mask-rule``
    * ``oci cloud-guard policy-summary list-policies``
    * ``oci cloud-guard problem update-bulk-problem-status --comment``
  * Support for opting out of DNS records during instance launch, as well as attaching
    secondary VNICs, in the Compute service
    * ``oci compute instance attach-vnic --assign-private-dns-record``
    * ``oci compute instance launch --assign-private-dns-record``
  * Support for mutable sizes on cluster networks in the Compute Management service. Argument (instance-pools)

OBS-URL: https://build.opensuse.org/request/show/893103
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=18
2021-05-15 19:55:47 +00:00

117 lines
2.5 KiB
Diff

diff -Nru oci-cli-2.24.4.orig/requirements.txt oci-cli-2.24.4/requirements.txt
--- oci-cli-2.24.4.orig/requirements.txt 2021-05-11 22:38:54.000000000 +0200
+++ oci-cli-2.24.4/requirements.txt 2021-05-14 13:21:01.440182907 +0200
@@ -2,41 +2,40 @@
# (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.17.0
+appdirs>=1.4.3
+arrow>=0.17.0
certifi
cffi>=1.9.1
-click==6.7
-configparser==4.0.2
-coverage==4.5.2
-cryptography==3.3.2
-httpsig-cffi==15.0.0
-Jinja2==2.11.3
-jmespath==0.10.0
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.38.2
-packaging==20.2
-pluggy==0.13.0
-py==1.10.0
-pyasn1==0.2.3
-pyOpenSSL==19.1.0
-pycparser==2.20
-pyparsing==2.2.0
-pytest==3.2.3
-pytest-cov==2.5.1
+click>=6.7
+coverage>=4.5.2
+cryptography>=3.3.2
+httpsig-cffi>=15.0.0
+Jinja2>=2.11.3
+jmespath>=0.10.0
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.38.2
+packaging>=20.2
+pluggy>=0.13.0
+py>=1.10.0
+pyasn1>=0.2.3
+pyOpenSSL>=19.1.0
+pycparser>=2.20
+pyparsing>=2.2.0
+pytest>=3.2.3
+pytest-cov>=2.5.1
python-dateutil>=2.5.3,<3.0.0
pytz>=2016.10
-requests==2.21.0
-retrying==1.3.3
+requests>=2.21.0
+retrying>=1.3.3
setuptools<45
-six==1.14.0
-sphinx==1.6.4
-sphinx-rtd-theme==0.2.5b1
-terminaltables==3.1.0
-tox==3.23.0
-vcrpy==1.13.0
-virtualenv==16.7.10
-pytest-xdist==1.22.2
-pytest-forked==1.0.2
-PyYAML==5.4.1
+six>=1.14.0
+sphinx>=1.6.4
+sphinx-rtd-theme>=0.2.5b1
+terminaltables>=3.1.0
+tox>=3.23.0
+vcrpy>=1.13.0
+virtualenv>=16.7.10
+pytest-xdist>=1.22.2
+pytest-forked>=1.0.2
+PyYAML>=5.4.1
diff -Nru oci-cli-2.24.4.orig/setup.py oci-cli-2.24.4/setup.py
--- oci-cli-2.24.4.orig/setup.py 2021-05-11 22:38:54.000000000 +0200
+++ oci-cli-2.24.4/setup.py 2021-05-14 13:21:19.100333555 +0200
@@ -30,24 +30,23 @@
readme = f.read()
requires = [
- 'oci==2.38.2',
- 'arrow==0.17.0',
+ 'oci>=2.38.2',
+ 'arrow>=0.17.0',
'certifi',
- 'click==6.7',
- 'configparser==4.0.2',
- 'cryptography==3.3.2',
- 'jmespath==0.10.0',
+ 'click>=6.7',
+ 'cryptography>=3.3.2',
+ 'jmespath>=0.10.0',
'python-dateutil>=2.5.3,<3.0.0',
'pytz>=2016.10',
- 'retrying==1.3.3',
- 'six==1.14.0',
- 'terminaltables==3.1.0',
- 'pyOpenSSL==19.1.0',
- 'PyYAML==5.4.1'
+ 'retrying>=1.3.3',
+ 'six>=1.14.0',
+ 'terminaltables>=3.1.0',
+ 'pyOpenSSL>=19.1.0',
+ 'PyYAML>=5.4.1'
]
extras = {
- 'db': ['cx_Oracle==7.0']
+ 'db': ['cx_Oracle>=7.0']
}
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")