diff -rupN oci-cli-2.10.0/setup.py oci-cli-2.10.0b/setup.py --- oci-cli-2.10.0/setup.py 2020-04-21 18:11:13.000000000 -0400 +++ oci-cli-2.10.0b/setup.py 2020-04-21 20:48:49.327595548 -0400 @@ -29,25 +29,24 @@ with open_relative("README.rst") as f: readme = f.read() requires = [ - 'oci==2.13.0', - 'arrow==0.14.7', + 'oci', + 'arrow', 'certifi', - 'click==6.7', - 'configparser==4.0.2', - 'cryptography==2.8', - 'jmespath==0.9.4', - 'python-dateutil>=2.5.3,<3.0.0', - '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' + 'click', + 'cryptography', + 'jmespath', + 'python-dateutil', + 'pytz', + 'retrying', + 'six', + 'terminaltables', + 'idna', + 'pyOpenSSL', + 'PyYAML' ] extras = { - 'db': ['cx_Oracle==7.0'] + 'db': ['cx_Oracle'] } fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE") diff -rupN oci-cli-2.10.0/src/oci_cli/cli_root.py oci-cli-2.10.0b/src/oci_cli/cli_root.py --- oci-cli-2.10.0/src/oci_cli/cli_root.py 2020-04-21 18:11:13.000000000 -0400 +++ oci-cli-2.10.0b/src/oci_cli/cli_root.py 2020-04-21 20:49:14.380978793 -0400 @@ -217,7 +217,7 @@ For information on configuration, see ht @click.option('--profile', default=Sentinel(DEFAULT_PROFILE), show_default=False, help='The profile in the config file to load. This profile will also be used to locate any default parameter values which have been specified in the OCI CLI-specific configuration file. [default: DEFAULT]') -@click.option('--cli-rc-file', '--defaults-file', +@click.option('--cli-rc-file', '--defaults-file', 'defaults_file', default=cli_constants.CLI_RC_DEFAULT_LOCATION, show_default=True, is_eager=True, callback=eager_load_cli_rc_file, help='The path to the OCI CLI-specific configuration file, containing parameter default values and other configuration information such as command aliases and predefined queries. The --defaults-file option is deprecated and you should use the --cli-rc-file option instead.')