Skip to content

Commit

Permalink
Add upper bound to next major version for aws and azure dependencies. (
Browse files Browse the repository at this point in the history
  • Loading branch information
tvalentyn authored Apr 12, 2023
1 parent 0daa6b5 commit ca18256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,11 @@ def get_portability_package_data():
# use a fixed major version of PIL for different python versions
'pillow>=7.1.1,<10',
],
'aws': ['boto3 >=1.9'],
'aws': ['boto3>=1.9,<2'],
'azure': [
'azure-storage-blob >=12.3.2',
'azure-core >=1.7.0',
'azure-identity >=1.12.0',
'azure-storage-blob>=12.3.2,<13',
'azure-core>=1.7.0,<2',
'azure-identity>=1.12.0,<2',
],
# Exclude pandas<=1.4.2 since it doesn't work with numpy 1.24.x.
# Exclude 1.5.0 and 1.5.1 because of
Expand Down

0 comments on commit ca18256

Please sign in to comment.