Skip to content

Commit

Permalink
Merge pull request #2172 from sopel-irc/pin-requests [skip ci]
Browse files Browse the repository at this point in the history
requirements: pin requests on py3.3 to fix install/build

Proved working by PR build, so can skip CI on merge.
  • Loading branch information
dgw authored Aug 4, 2021
2 parents f050f44 + 247401a commit 46f554e
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit 46f554e

Please sign in to comment.