Skip to content

Commit

Permalink
exclude termux and pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
coletdjnz committed Dec 2, 2023
1 parent fa2ee10 commit d88c273
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 @@ -7,4 +7,6 @@ certifi
requests>=2.31.0,<3
urllib3>=1.26.17,<3
websockets>=12.0
curl_cffi>=0.5.9,<0.6.0; (sys_platform == "win32" and platform_machine == "amd64") or (sys_platform == "linux" and (platform_machine == "aarch64" or platform_machine == "x86_64")) or sys_platform == "darwin"
# curl_cffi has builds for Linux aarch64, however Termux has issues with it: https://github.com/yifeikong/curl_cffi/issues/74
# pypy does not work with curl_cffi
curl_cffi>=0.5.9,<0.6.0; implementation_name=='cpython' and ((sys_platform == "win32" and platform_machine == "amd64") or (sys_platform == "linux" and platform_machine == "x86_64") or sys_platform == "darwin")

0 comments on commit d88c273

Please sign in to comment.