From 091f4c9e952c006f9ba9b405bf0e396d3af716da Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Fri, 13 Sep 2024 15:22:46 +0100 Subject: [PATCH] Unpin dependencies 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. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6d147b6..914ca65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" ]