Skip to content

Commit 9da645e

Browse files
chore: add requests dependency to project configuration
Included the 'requests' library with a minimum version of 2.32.0 in pyproject.toml, requirements.txt, and setup.py to ensure compatibility and functionality across the project.
1 parent 493cc8e commit 9da645e

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies = [
1515
"python-dateutil (>=2.8.2)",
1616
"pydantic (>=2)",
1717
"typing-extensions (>=4.7.1)",
18+
"requests (>=2.32.0)",
1819
]
1920

2021
[project.urls]

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ urllib3 >= 2.1.0, < 3.0.0
22
python_dateutil >= 2.8.2
33
pydantic >= 2
44
typing-extensions >= 4.7.1
5+
requests >= 2.32.0

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"python-dateutil >= 2.8.2",
3030
"pydantic >= 2",
3131
"typing-extensions >= 4.7.1",
32+
"requests >= 2.32.0",
3233
]
3334

3435
setup(

0 commit comments

Comments
 (0)