From 2184a6a73c031907e486c43a0955c71da9bf8471 Mon Sep 17 00:00:00 2001 From: Andrew Johnston Date: Fri, 10 May 2024 08:17:55 -0800 Subject: [PATCH] add missing requests dependency to lib/dynamo/setup.py --- CHANGELOG.md | 5 +++++ lib/dynamo/setup.py | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd9467e3a..d8b3f5205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.2.1] + +### Fixed +- Added missing `requests` dependency to lib/dyanmo/setup.py. Fixes [#2269](https://github.com/ASFHyP3/hyp3/issues/2269). + ## [7.2.0] This release includes changes to support an upcoming user whitelisting feature. A new user will be required to apply for HyP3 access and will not be able to submit jobs until an operator has manually reviewed and approved the application. As of this release, all new and existing users are automatically approved without being required to submit an application, but this will change in the near future. diff --git a/lib/dynamo/setup.py b/lib/dynamo/setup.py index 62d7e31c0..a099e6928 100644 --- a/lib/dynamo/setup.py +++ b/lib/dynamo/setup.py @@ -8,6 +8,7 @@ install_requires=[ 'boto3', 'python-dateutil', + 'requests', ], python_requires='~=3.9',