Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

requirements: pin requests on py3.3 to fix install/build #2172

Merged
merged 1 commit into from
Aug 4, 2021
Merged
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
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ geoip2>=4.0,<5.0; python_version >= '3.6'
# transitive dependency of geoip2; v2 dropped py2.7 & py3 < 3.6
maxminddb<2.0; python_version < '3.6'
ipaddress<2.0; python_version < '3.3'
requests>=2.0.0,<3.0.0
requests>=2.0.0,<3.0.0; python_version != '3.3'
# py3.3 doesn't work with the chardet/charset-normalizer detection added in 2.26
requests>=2.0.0,<2.26; python_version == '3.3'
# transitive dependency of requests
# 2.0 will drop EOL Python 2.7 & 3.5, just like Sopel 8 plans to
urllib3<1.27; python_version != '3.3' and python_version != '3.4'
Expand Down