diff --git a/README.md b/README.md index 2ded4c2..fa36630 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Brevo's API matches the [OpenAPI v2 definition](https://www.openapis.org/). The This PYTHON package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project and is reviewed and maintained by Brevo: - API version: 3.0.0 -- Package version: 1.1.0 +- Package version: 1.1.2 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://account.brevo.com/support](https://account.brevo.com/support) diff --git a/brevo_python/__init__.py b/brevo_python/__init__.py index 2133a14..a4f0154 100644 --- a/brevo_python/__init__.py +++ b/brevo_python/__init__.py @@ -84,7 +84,6 @@ from brevo_python.models.company_attributes import CompanyAttributes from brevo_python.models.company_attributes_inner import CompanyAttributesInner from brevo_python.models.component_items import ComponentItems -from brevo_python.models.configuration import Configuration from brevo_python.models.conversations_message import ConversationsMessage from brevo_python.models.conversations_message_file import ConversationsMessageFile from brevo_python.models.conversations_message_file_image_info import ConversationsMessageFileImageInfo diff --git a/brevo_python/configuration.py b/brevo_python/configuration.py index dba3a50..711752b 100644 --- a/brevo_python/configuration.py +++ b/brevo_python/configuration.py @@ -255,5 +255,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 3.0.0\n"\ - "SDK Package Version: 1.1.0".\ + "SDK Package Version: 1.1.2".\ format(env=sys.platform, pyversion=sys.version) diff --git a/brevo_python/models/__init__.py b/brevo_python/models/__init__.py index cf39839..a3ef2e9 100644 --- a/brevo_python/models/__init__.py +++ b/brevo_python/models/__init__.py @@ -51,7 +51,6 @@ from brevo_python.models.company_attributes import CompanyAttributes from brevo_python.models.company_attributes_inner import CompanyAttributesInner from brevo_python.models.component_items import ComponentItems -from brevo_python.models.configuration import Configuration from brevo_python.models.conversations_message import ConversationsMessage from brevo_python.models.conversations_message_file import ConversationsMessageFile from brevo_python.models.conversations_message_file_image_info import ConversationsMessageFileImageInfo diff --git a/setup.py b/setup.py index 986bec5..f7c0bc9 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "brevo-python" -VERSION = "1.1.0" +VERSION = "1.1.2" # To install the library, run the following # # python setup.py install diff --git a/test/test_configuration.py b/test/test_configuration.py deleted file mode 100644 index 82b101c..0000000 --- a/test/test_configuration.py +++ /dev/null @@ -1,40 +0,0 @@ -# coding: utf-8 - -""" - Brevo API - - Brevo provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/brevo **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable | | 422 | Error. Unprocessable Entity | # noqa: E501 - - OpenAPI spec version: 3.0.0 - Contact: contact@brevo.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import unittest - -import brevo_python -from brevo_python.models.configuration import Configuration # noqa: E501 -from brevo_python.rest import ApiException - - -class TestConfiguration(unittest.TestCase): - """Configuration unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testConfiguration(self): - """Test Configuration""" - # FIXME: construct object with mandatory attributes with example values - # model = brevo_python.models.configuration.Configuration() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main()