From 7dc84eba6cd119944070212d181a0f8db44388a0 Mon Sep 17 00:00:00 2001 From: Sylvia McLaughlin <85905333+sylviamclaughlin@users.noreply.github.com> Date: Fri, 15 Sep 2023 10:47:23 -0700 Subject: [PATCH] Adding httpx to the requirements.txt file since it is actually used to run the client (#258) --- app/requirements.txt | 1 + app/requirements_dev.txt | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/requirements.txt b/app/requirements.txt index ee7262a0..c2fab873 100644 --- a/app/requirements.txt +++ b/app/requirements.txt @@ -9,6 +9,7 @@ geoip2==4.7.0 google-api-python-client==2.97.0 google-auth-httplib2==0.1.0 google-auth-oauthlib==0.8.0 +httpx==0.24.1 itsdangerous==2.1.2 Jinja2==3.1.2 PyYaml==5.3.1 # need to pin down the PyYaml version since the newest version is currently broken - https://github.com/yaml/pyyaml/issues/724 diff --git a/app/requirements_dev.txt b/app/requirements_dev.txt index 930463ba..9582e14e 100644 --- a/app/requirements_dev.txt +++ b/app/requirements_dev.txt @@ -1,7 +1,6 @@ black==22.12.0 coverage==6.5.0 flake8==6.1.0 -httpx==0.24.1 pytest==7.4.1 pytest-asyncio==0.21.1 pytest-env==0.8.2