From 7bb3ff89f517ab77e80edfaed2486ad52839d699 Mon Sep 17 00:00:00 2001 From: Joshua Teitelbaum Date: Wed, 17 Jan 2024 12:58:58 -0800 Subject: [PATCH] bump revision to 2.0.46 (#618) --- pyproject.toml.XXX | 2 +- setup.py | 4 ++-- zenpy/__init__.py | 2 +- zenpy/lib/api.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml.XXX b/pyproject.toml.XXX index 7b21833e..ff7a4a3f 100644 --- a/pyproject.toml.XXX +++ b/pyproject.toml.XXX @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zenpy" -version = "2.0.45" +version = "2.0.46" authors = [ { name="William Coe", email="facetoe@facetoe.com.au" }, ] diff --git a/setup.py b/setup.py index cf94c98a..e181d33f 100755 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ setup( name='zenpy', packages=setuptools.find_packages(), - version='2.0.45', + version='2.0.46', description='Python wrapper for the Zendesk API', license='GPLv3', license_files = ('LICENSE'), author='Face Toe', author_email='facetoe@facetoe.com.au', url='https://github.com/facetoe/zenpy', - download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.45', + download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.46', install_requires=[ 'requests>=2.14.2', 'python-dateutil>=2.7.5', diff --git a/zenpy/__init__.py b/zenpy/__init__.py index 235fcdd0..69bad945 100644 --- a/zenpy/__init__.py +++ b/zenpy/__init__.py @@ -59,7 +59,7 @@ log = logging.getLogger() __author__ = "facetoe" -__version__ = "2.0.45" +__version__ = "2.0.46" class Zenpy(object): diff --git a/zenpy/lib/api.py b/zenpy/lib/api.py index 1f38ee16..6edab2b2 100644 --- a/zenpy/lib/api.py +++ b/zenpy/lib/api.py @@ -18,7 +18,7 @@ Section, Article, Comment, ArticleAttachment, Label, Category, Translation, Topic, Post, Subscription) from zenpy.lib.api_objects.talk_objects import ( - CallPe, VoiceComment) + CallPe) from zenpy.lib.exception import RatelimitBudgetExceeded, APIException, \ RecordNotFoundException, SearchResponseLimitExceeded from zenpy.lib.mapping import ZendeskObjectMapping, \