From 64d6076724f30a4910a0a4f23a582ac6ca36976f Mon Sep 17 00:00:00 2001 From: Aronne Brivio Date: Fri, 28 Feb 2025 11:58:33 +0000 Subject: [PATCH] Allow using jmespath 1.x --- aliyun-python-sdk-core/setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/aliyun-python-sdk-core/setup.py b/aliyun-python-sdk-core/setup.py index 4bc8085fd5..a35807233a 100644 --- a/aliyun-python-sdk-core/setup.py +++ b/aliyun-python-sdk-core/setup.py @@ -19,9 +19,8 @@ ''' import os -import sys -from setuptools import setup, find_packages +from setuptools import find_packages, setup """ Setup module for core. @@ -44,8 +43,8 @@ LONG_DESCRIPTION = fp.read() requires = [ - "jmespath>=0.9.3,<1.0.0", - "cryptography>=3.0.0" + "jmespath>=0.9.3,<2.0.0", + "cryptography>=3.0.0", ] setup_args = {