Skip to content

Commit

Permalink
Unpin dependencies
Browse files Browse the repository at this point in the history
FSD-utils is a library package meant to be installed in a variety of
other applications.

Those applications may themselves require other/specific versions of
dependencies. This library should be compatible with as many variations
of dependencies as possible so that it can be installed in all of our
apps with minimal risk of compatibility issues.

So we should not be pinning specific versions here, and instead just say
what range of dep versions should be compatible.
  • Loading branch information
samuelhwilliams committed Sep 13, 2024
1 parent ce4f363 commit 091f4c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ dependencies = [
"pytz>=2022.1",
"PyJWT[crypto]>=2.4.0",
"sentry-sdk[flask]>=2.0.0",
"requests==2.32.3",
"flask-redis==0.4.0",
"Flask-Migrate==4.0.7",
"requests>=2.32.3",
"flask-redis>=0.4.0",
"Flask-Migrate>=4.0.7",
"Flask-SQLAlchemy>=3.0.3",
"sqlalchemy-utils>=0.38.3",
"beautifulsoup4==4.12.3",
"beautifulsoup4>=4.12.3",
"boto3>=1.9.253"
]

Expand Down

0 comments on commit 091f4c9

Please sign in to comment.