forked from thumbor-community/aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version and use newer versions of AWS libraries
This fixes the conflict between tc_aws and sentry because the AWS libraries are fixed to an older (insecure!) version of urllib3, while sentry (correctly) requires newer versions.
- Loading branch information
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,8 @@ def readme(): | |
description='Thumbor AWS extensions', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
author='Thumbor-Community & William King', | ||
author_email='h.briand@gmail.com', # Original author email is: [email protected] | ||
author='Noun Project & Thumbor-Community & William King', | ||
author_email='drew@thenounproject.com', # Original author email is: willtrking@gmail.com, thumbor-community email h.briand@gmail.com | ||
zip_safe=False, | ||
include_package_data=True, | ||
packages=find_packages(), | ||
|
@@ -50,16 +50,17 @@ def readme(): | |
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Internet", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
], | ||
keywords='thumbor aws', | ||
install_requires=[ | ||
'python-dateutil>=2.8', | ||
'thumbor>=7.0.0a2,<8', | ||
'aiobotocore==0.12.0', | ||
'boto3>=1.9,<1.13', | ||
'aiobotocore', | ||
'boto3', | ||
], | ||
extras_require={ | ||
'tests': [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.0b | ||
7.1 |