-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
dependenciesPull requests that update a dependency filePull requests that update a dependency file
Description
The setup.py file currently lists dependencies in install_requires without specific version pins (e.g., requests, urllib3, click, pytz, arrow, python-rapidjson).
Example of current install_requires:
install_requires=[
"requests",
"urllib3",
"click",
"pytz",
"arrow",
"aiohttp[speedups]>=3.12.2,<4",
"python-rapidjson",
]
Task:
- Update each dependency in install_requires to use exact versions (e.g., "python-rapidjson==1.13", "requests==2.31.0", etc.).
- This will ensure reproducibility and prevent unexpected issues from unplanned dependency upgrades.
References:
Metadata
Metadata
Assignees
Labels
dependenciesPull requests that update a dependency filePull requests that update a dependency file