oci-cli/oc_relax-python-depends.patch
John Paul Adrian Glaubitz cd448d0fcb Accepting request 974657 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.8.0
  * Support for the Service Mesh service
    * ``oci service-mesh``
  * Big Data service
    * Support for compute only worker nodes
      * ``oci bds instance remove  --node-id``
      * ``oci bds instance remove  --node-id --is-force-remove-enabled``
    * Support for horizontal autoscaling policy
      * ``oci bds auto-scale-config create --policy-details``
      * ``oci bds auto-scale-config edit --policy-details``
    * Support for bootstrap script
      * ``oci bds instance create --bootstrap-script-url``
      * ``oci bds instance update --bootstrap-script-url``
    * Support for customizable kerberos realm name
      * ``oci bds instance create --kerberos-realm-name``
    * Support for ODH patch patch management
      * ``oci bds instance install-patch``
      * ``oci bds instance list-patch-histories``
      * ``oci bds instance list-patches``
  * Rover service
    * [BREAKING] Support for required shape parameter
      to the creation of a roving edge node
      * ``oci rover node create --shape``
    * Support to list the available shapes for Rover
      * ``oci rover shape list --compartment-id``
    * Support the option for the user to provide their own master key OCID to
      encrypt secret data to roving edge nodes, standalone clusters and station
      clusters.
      * ``oci rover node create --master-key-id --policy-compartment-id --policy-name``
      * ``oci rover standalone-cluster --master-key-id --policy-compartment-id --policy-name``

OBS-URL: https://build.opensuse.org/request/show/974657
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=37
2022-05-07 13:05:36 +00:00

111 lines
2.4 KiB
Diff

diff -Nru oci-cli-3.8.0.orig/requirements.txt oci-cli-3.8.0/requirements.txt
--- oci-cli-3.8.0.orig/requirements.txt 2022-04-26 20:33:37.000000000 +0200
+++ oci-cli-3.8.0/requirements.txt 2022-05-03 14:25:34.963726116 +0200
@@ -2,40 +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
+appdirs>=1.4.3
arrow>=1.0.0
certifi
cffi>=1.9.1
-click==7.1.2
-coverage==4.5.2
-cryptography==3.3.2
-httpsig-cffi==15.0.0
-Jinja2==3.0.3
-jmespath==0.10.0
-ndg-httpsclient==0.4.2
-mock==2.0.0
-oci==2.65.0
-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
+click>=7.1.2
+coverage>=4.5.2
+cryptography>=3.3.2
+httpsig-cffi>=15.0.0
+Jinja2>=3.0.3
+jmespath>=0.10.0
+ndg-httpsclient>=0.4.2
+mock>=2.0.0
+oci>=2.65.0
+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
pytz>=2016.10
-requests==2.21.0
+requests>=2.21.0
setuptools<45
six>=1.15.0
-sphinx==3.3.0
-sphinx-rtd-theme==0.4.3
-terminaltables==3.1.0
-tox==3.23.0
-vcrpy==1.13.0
-virtualenv==20.13.0
-pytest-xdist==1.22.2
-pytest-forked==1.0.2
-PyYAML>=5.4,<6
-docutils==0.15.2
+sphinx>=3.3.0
+sphinx-rtd-theme>=0.4.3
+terminaltables>=3.1.0
+tox>=3.23.0
+vcrpy>=1.13.0
+virtualenv>=20.13.0
+pytest-xdist>=1.22.2
+pytest-forked>=1.0.2
+PyYAML>=5.4
+docutils>=0.15.2
diff -Nru oci-cli-3.8.0.orig/setup.py oci-cli-3.8.0/setup.py
--- oci-cli-3.8.0.orig/setup.py 2022-04-26 20:33:37.000000000 +0200
+++ oci-cli-3.8.0/setup.py 2022-05-03 14:26:13.576112998 +0200
@@ -29,22 +29,22 @@
readme = f.read()
requires = [
- 'oci==2.65.0',
+ 'oci>=2.65.0',
'arrow>=1.0.0',
'certifi',
- 'click==7.1.2',
- 'cryptography>=3.2.1,<=3.4.7',
- 'jmespath==0.10.0',
- 'python-dateutil>=2.5.3,<3.0.0',
+ 'click>=7.1.2',
+ 'cryptography>=3.2.1',
+ 'jmespath>=0.10.0',
+ 'python-dateutil>=2.5.3',
'pytz>=2016.10',
'six>=1.15.0',
- 'terminaltables==3.1.0',
- 'pyOpenSSL==19.1.0',
- 'PyYAML>=5.4,<6'
+ 'terminaltables>=3.1.0',
+ 'pyOpenSSL>=19.1.0',
+ 'PyYAML>=5.4'
]
extras = {
- 'db': ['cx_Oracle==8.3']
+ 'db': ['cx_Oracle>=8.3']
}
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")