forked from pool/python-oci-sdk
John Paul Adrian Glaubitz
024a019925
- Update to version 2.48.0 * Support for creating database systems from backups with database software images in the Database service * Support for optionally providing a SID prefix during Exadata database creation in the Database service * Support for node subsetting on VM clusters in the Database service * Support for non-CDB to PDB conversion in the Database service * Support for default homepages, unprocessed data buckets, and parsing geostats in the Logging Analytics service * Support for Circuit Breakers. Please refer `here <https://docs.oracle.com/en-us/ iaas/tools/python/latest/sdk_behaviors/circuit_breakers.html>`__ to learn more. * Support for enabling/disabling Retries globally for operations using Default Retry Strategy. Please refer `here <https://docs.oracle.com/en-us/iaas/tools/ python/latest/sdk_behaviors/retries.html#overriding-the-retry-behavior-at- global-sdk-level>`__ for more info. * Default Retry strategy will now retry operations for max 8 attempts and have a timeout of 600 seconds before failing. The strategy will now use `De-Correlated jitter <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/ retries.html#de-correlated-jitter>`__ as the default delay strategy. - from version 2.47.1 * Support for the Data Labeling Service * Support for the Web Application Firewall service * Support for querying and setting Application Performance Monitoring configurations in the Application Performance Monitoring service * Support for the run-once monitor feature and network data collection in the Application Performance Monitoring service * Support for Oracle Enterprise Manager bridges, source auto-association, source event types mapping, and partitioning and searching data by LogSet in the Logging Analytics service * Support for Log events APIs used by plugins like fluentd, fluentbit, etc. to upload OBS-URL: https://build.opensuse.org/request/show/927487 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-oci-sdk?expand=0&rev=35
61 lines
1.5 KiB
Diff
61 lines
1.5 KiB
Diff
diff -Nru oci-python-sdk-2.48.0.orig/requirements.txt oci-python-sdk-2.48.0/requirements.txt
|
|
--- oci-python-sdk-2.48.0.orig/requirements.txt 2021-10-19 19:21:13.000000000 +0200
|
|
+++ oci-python-sdk-2.48.0/requirements.txt 2021-10-26 11:39:11.847089373 +0200
|
|
@@ -1,19 +1,18 @@
|
|
-autodocsumm==0.1.11
|
|
+autodocsumm>=0.1.11
|
|
certifi
|
|
-configparser==4.0.2
|
|
-coverage==4.5.2
|
|
-cryptography>=3.2.1,<=3.4.7
|
|
-flake8==3.6.0
|
|
-mock==2.0.0
|
|
-pyOpenSSL==19.1.0
|
|
-pytest==4.1.0
|
|
-pytest-cov==2.6.1
|
|
-attrs==19.1.0
|
|
-python-dateutil>=2.5.3,<=2.7.3
|
|
+coverage>=4.5.2
|
|
+cryptography>=3.2.1
|
|
+flake8>=3.6.0
|
|
+mock>=2.0.0
|
|
+pyOpenSSL>=19.1.0
|
|
+pytest>=4.1.0
|
|
+pytest-cov>=2.6.1
|
|
+attrs>=19.1.0
|
|
+python-dateutil>=2.5.3
|
|
pytz>=2016.10
|
|
-sphinx-rtd-theme==0.4.2
|
|
-sphinx==1.8.3
|
|
-tox==3.14.3
|
|
-vcrpy==2.0.1
|
|
-wheel==0.32.3
|
|
-circuitbreaker>=1.3.1,<2.0.0
|
|
\ No newline at end of file
|
|
+sphinx-rtd-theme>=0.4.2
|
|
+sphinx>=1.8.3
|
|
+tox>=3.14.3
|
|
+vcrpy>=2.0.1
|
|
+wheel>=0.32.3
|
|
+circuitbreaker>=1.3.1
|
|
diff -Nru oci-python-sdk-2.48.0.orig/setup.py oci-python-sdk-2.48.0/setup.py
|
|
--- oci-python-sdk-2.48.0.orig/setup.py 2021-10-19 19:21:13.000000000 +0200
|
|
+++ oci-python-sdk-2.48.0/setup.py 2021-10-26 11:39:52.287354894 +0200
|
|
@@ -31,12 +31,11 @@
|
|
|
|
requires = [
|
|
"certifi",
|
|
- "configparser==4.0.2 ; python_version < '3'",
|
|
- "cryptography>=3.2.1,<=3.4.7",
|
|
- "pyOpenSSL>=17.5.0,<=19.1.0",
|
|
- "python-dateutil>=2.5.3,<3.0.0",
|
|
+ "cryptography>=3.2.1",
|
|
+ "pyOpenSSL>=17.5.0",
|
|
+ "python-dateutil>=2.5.3",
|
|
"pytz>=2016.10",
|
|
- "circuitbreaker>=1.3.1,< 2.0.0"
|
|
+ "circuitbreaker>=1.3.1"
|
|
]
|
|
|
|
setup(
|