Skip to content

Commit

Permalink
fix(deps): limit deps version to improve build time
Browse files Browse the repository at this point in the history
  • Loading branch information
Bladrak committed Dec 7, 2022
1 parent c68aeb4 commit 4731ec6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,17 @@ def readme():
],
keywords='thumbor aws',
install_requires=[
'python-dateutil',
'python-dateutil>=2.8',
'thumbor>=7.0.0a2,<8',
'aiobotocore==0.12.0',
'boto3>=1.9,<1.13',
],
extras_require={
'tests': [
'coverage',
'moto[server]',
'mock',
'pytest',
'coverage>=6.5',
'moto[server]>=4.0',
'mock>=4.0',
'pytest>=7.2',
],
},
)

0 comments on commit 4731ec6

Please sign in to comment.