oci-cli/oc_relax-python-depends.patch
Robert Schweikert b7abc00cdd Accepting request 798296 from home:glaubitz:branches:Cloud:Tools
- Update to version 2.10.0
  + Support for Data Safe service
    * ``oci data-safe``
  + Support for Incident Management and Creation service
    * ``oci support``
  + Support for object versions in Object Storage
    * ``oci os object list-object-versions``
    * ``oci os bucket create --versioning``
    * ``oci os bucket update --versioning``
    * ``oci os object copy --source-version-id``
    * ``oci os object copy-part --source-version-id``
    * ``oci os object delete --version-id``
    * ``oci os object restore --version-id``
    * ``oci os object get --version-id``
    * ``oci os object head --version-id``
    * ``oci os object list --start-after``
  + Support for user-provided encryption keys in Object Storage, by introducing
    optional parameters to specify a file containing the encryption key
    * ``oci os object put --encryption-key-file``
    * ``oci os object get --encryption-key-file``
    * ``oci os object head --encryption-key-file``
    * ``oci os object bulk-download --encryption-key-file``
    * ``oci os object bulk-upload --encryption-key-file``
    * ``oci os object copy --encryption-key-file --source-encryption-key-file``
  + Support for managing shape compatibility entries for Compute images.
    * ``oci compute image-shape-compatibility-entry``
  + Support for maintenance preferences while launching
    and updating an Exadata DB System.
    * ``oci db system launch --maintenance-window-details``
    * ``oci db system update --maintenance-window-details``

OBS-URL: https://build.opensuse.org/request/show/798296
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=7
2020-04-27 14:47:56 +00:00

124 lines
2.7 KiB
Diff

diff -Nru oci-cli-2.10.0.orig/requirements.txt oci-cli-2.10.0/requirements.txt
--- oci-cli-2.10.0.orig/requirements.txt 2020-04-22 00:11:13.000000000 +0200
+++ oci-cli-2.10.0/requirements.txt 2020-04-27 15:49:32.863622534 +0200
@@ -2,41 +2,41 @@
# (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
-idna>=2.5,<2.7
-Jinja2==2.10.1
-jmespath==0.9.4
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.13.0
-packaging==16.8
-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
+configparser>=4.0.2
+coverage>=4.5.2
+cryptography>=2.8
+httpsig-cffi>=15.0.0
+idna>=2.5
+Jinja2>=2.10.1
+jmespath>=0.9.4
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.13.0
+packaging>=16.8
+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.10.0.orig/setup.py oci-cli-2.10.0/setup.py
--- oci-cli-2.10.0.orig/setup.py 2020-04-22 00:11:13.000000000 +0200
+++ oci-cli-2.10.0/setup.py 2020-04-27 15:49:09.671543031 +0200
@@ -29,25 +29,25 @@
readme = f.read()
requires = [
- 'oci==2.13.0',
- 'arrow==0.14.7',
+ 'oci>=2.13.0',
+ 'arrow>=0.14.7',
'certifi',
- 'click==6.7',
- 'configparser==4.0.2',
- 'cryptography==2.8',
- 'jmespath==0.9.4',
- 'python-dateutil>=2.5.3,<3.0.0',
+ 'click>=6.7',
+ 'configparser>=4.0.2',
+ 'cryptography>=2.8',
+ 'jmespath>=0.9.4',
+ 'python-dateutil>=2.5.3',
'pytz>=2016.10',
- 'retrying==1.3.3',
- 'six==1.14.0',
- 'terminaltables==3.1.0',
- 'idna>=2.5,<2.7',
- 'pyOpenSSL==18.0.0',
- 'PyYAML==5.1.2'
+ 'retrying>=1.3.3',
+ 'six>=1.14.0',
+ 'terminaltables>=3.1.0',
+ 'idna>=2.5',
+ '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")