Update package version
This commit is contained in:
parent
b32d36751c
commit
675c677ab5
7 changed files with 6 additions and 21 deletions
|
@ -13,7 +13,7 @@ task buildPythonClient(type: org.openapitools.generator.gradle.plugin.tasks.Gene
|
||||||
outputDir = "$rootDir/python"
|
outputDir = "$rootDir/python"
|
||||||
configOptions = [
|
configOptions = [
|
||||||
packageName: "garage_admin_sdk",
|
packageName: "garage_admin_sdk",
|
||||||
packageVersion: "0.7.3",
|
packageVersion: "0.8.0",
|
||||||
projectName: "garage-admin-sdk"
|
projectName: "garage-admin-sdk"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,19 +86,4 @@ setup.cfg
|
||||||
setup.py
|
setup.py
|
||||||
test-requirements.txt
|
test-requirements.txt
|
||||||
test/__init__.py
|
test/__init__.py
|
||||||
test/test_allow_bucket_key_request.py
|
|
||||||
test/test_allow_bucket_key_request_permissions.py
|
|
||||||
test/test_bucket_api.py
|
|
||||||
test/test_bucket_info.py
|
|
||||||
test/test_bucket_info_quotas.py
|
|
||||||
test/test_bucket_info_website_config.py
|
|
||||||
test/test_bucket_key_info.py
|
|
||||||
test/test_create_bucket_request.py
|
|
||||||
test/test_create_bucket_request_local_alias.py
|
|
||||||
test/test_create_bucket_request_local_alias_allow.py
|
|
||||||
test/test_list_buckets200_response_inner.py
|
|
||||||
test/test_list_buckets200_response_inner_local_aliases_inner.py
|
|
||||||
test/test_update_bucket_request.py
|
|
||||||
test/test_update_bucket_request_quotas.py
|
|
||||||
test/test_update_bucket_request_website_access.py
|
|
||||||
tox.ini
|
tox.ini
|
||||||
|
|
|
@ -7,7 +7,7 @@ Administrate your Garage cluster programatically, including status, layout, keys
|
||||||
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
||||||
|
|
||||||
- API version: v0.8.0
|
- API version: v0.8.0
|
||||||
- Package version: 0.7.3
|
- Package version: 0.8.0
|
||||||
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
||||||
|
|
||||||
## Requirements.
|
## Requirements.
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.7.3"
|
__version__ = "0.8.0"
|
||||||
|
|
||||||
# import ApiClient
|
# import ApiClient
|
||||||
from garage_admin_sdk.api_client import ApiClient
|
from garage_admin_sdk.api_client import ApiClient
|
||||||
|
|
|
@ -76,7 +76,7 @@ class ApiClient(object):
|
||||||
self.default_headers[header_name] = header_value
|
self.default_headers[header_name] = header_value
|
||||||
self.cookie = cookie
|
self.cookie = cookie
|
||||||
# Set default User-Agent.
|
# Set default User-Agent.
|
||||||
self.user_agent = 'OpenAPI-Generator/0.7.3/python'
|
self.user_agent = 'OpenAPI-Generator/0.8.0/python'
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
return self
|
return self
|
||||||
|
|
|
@ -388,7 +388,7 @@ class Configuration(object):
|
||||||
"OS: {env}\n"\
|
"OS: {env}\n"\
|
||||||
"Python Version: {pyversion}\n"\
|
"Python Version: {pyversion}\n"\
|
||||||
"Version of the API: v0.8.0\n"\
|
"Version of the API: v0.8.0\n"\
|
||||||
"SDK Package Version: 0.7.3".\
|
"SDK Package Version: 0.8.0".\
|
||||||
format(env=sys.platform, pyversion=sys.version)
|
format(env=sys.platform, pyversion=sys.version)
|
||||||
|
|
||||||
def get_host_settings(self):
|
def get_host_settings(self):
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
from setuptools import setup, find_packages # noqa: H301
|
from setuptools import setup, find_packages # noqa: H301
|
||||||
|
|
||||||
NAME = "garage-admin-sdk"
|
NAME = "garage-admin-sdk"
|
||||||
VERSION = "0.7.3"
|
VERSION = "0.8.0"
|
||||||
# To install the library, run the following
|
# To install the library, run the following
|
||||||
#
|
#
|
||||||
# python setup.py install
|
# python setup.py install
|
||||||
|
|
Loading…
Reference in a new issue