Skip to content

Commit

Permalink
Update version and use newer versions of AWS libraries
Browse files Browse the repository at this point in the history
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
drewbrew committed Sep 27, 2023
1 parent e3af300 commit f5dc5ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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': [
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0b
7.1

0 comments on commit f5dc5ad

Please sign in to comment.