Fix failing python tests

The requests module 1.2.3 is no longer compatible with python >=3.10.0.
So, instead use 2.26.0, the most recent version that is compatible with
our supported python versions at the time of this commit.
This commit is contained in:
Andrew Eisenberg
2021-10-14 09:00:15 -07:00
parent 1ebb0a0a35
commit 3df217266d
19 changed files with 348 additions and 49 deletions

View File

@@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "*"
requests = "2.26.0"
[tool.poetry.dev-dependencies]