Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion etsy_python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.32.4
requests==2.33.0

Copilot AI Mar 30, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pinning requests==2.33.0 will likely break installs/CI on Python 3.8 used by this repo (e.g., .github/workflows/pr-tests.yml and python-publish.yml run on 3.8). Requests 2.32.5+ dropped Python 3.8 support (and 2.33.0 drops 3.9 as well), so pip install -r etsy_python/requirements.txt on 3.8 should fail. Either keep requests pinned to the last version that supports your minimum Python, or bump the project鈥檚 minimum Python version and update workflows + packaging metadata (python_requires) accordingly.

Suggested change
requests==2.33.0
requests==2.32.4

Copilot uses AI. Check for mistakes.
requests-oauthlib>=1.3.1
Loading