From 4536465b158f086f7ecf84c40ce1c2d30504dcc2 Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Tue, 21 May 2024 11:21:07 +0500 Subject: [PATCH] build(enum34): remove enum34 dependency (#60) This commit removes the enum34 dependency from the core library as the enum34 dependency is not needed since Python version 3.4 and we support Python version >= 3.7. closes #59 --- requirements.txt | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index b5a0fed..66f28f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ jsonpickle~=3.0.1, >= 3.0.1 python-dateutil~=2.8.1 -enum34~=1.1, >=1.1.10 apimatic-core-interfaces~=0.1.0 requests~=2.31 setuptools>=68.0.0 diff --git a/setup.py b/setup.py index 51e0775..a215408 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='apimatic-core', - version='0.2.10', + version='0.2.11', description='A library that contains core logic and utilities for ' 'consuming REST APIs using Python SDKs generated by APIMatic.', long_description=long_description,