From f5b70cf95ff0bd4e2d50a1a95495f7c48baa8d1b Mon Sep 17 00:00:00 2001 From: Alex Litvak Date: Tue, 15 Mar 2022 23:10:28 +0600 Subject: [PATCH] bump version to 1.3.8 --- iron_worker.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iron_worker.py b/iron_worker.py index a7143ad..7f7570b 100644 --- a/iron_worker.py +++ b/iron_worker.py @@ -242,7 +242,7 @@ def zip(self, destination=None, overwrite=True): class IronWorker: NAME = "iron_worker_python" - VERSION = "1.3.7" + VERSION = "1.3.8" isLoaded = False arguments = {'task_id': None, 'dir': None, 'payload': None, 'config': None} diff --git a/setup.py b/setup.py index e06a064..88a986e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ name='iron-worker', py_modules=["iron_worker"], packages=["testDir"], - version='1.3.7', + version='1.3.8', install_requires=["iron_core >= 1.1.0", "python-dateutil"], description='The Python client for IronWorker, a cloud service for background processing.', author='Iron.io',