Sign in
chromium
/
external
/
github.com
/
psf
/
requests
/
refs/heads/dependabot/github_actions/github/codeql-action-4.33.0
/
.
/
setup.py
blob: 1095518ac8d7956cdbddad1a245075c742b4915c [
file
] [
log
] [
blame
] [
edit
]
import
sys
if
sys
.
version_info
<
(
3
,
10
):
# noqa: UP036
sys
.
stderr
.
write
(
"Requests requires Python 3.10 or later.\n"
)
sys
.
exit
(
1
)
from
setuptools
import
setup
setup
()