mirror of
https://github.com/github/codeql-action.git
synced 2025-12-24 00:00:20 +08:00
The requests module 1.2.3 is no longer compatible with python >=3.10.0. So, instead use 2.26.0, the most recent version that is compatible with our supported python versions at the time of this commit.
13 lines
277 B
Python
13 lines
277 B
Python
from setuptools import setup
|
|
|
|
# has fake Trove classifier to fool Python extractor to believe this is Python 2 for sure
|
|
|
|
# Programming Language :: Python :: 2.7
|
|
|
|
|
|
setup(
|
|
name="example-setup.py",
|
|
install_requires=["requests==2.26.0"],
|
|
python_requires=">=2.7, <3",
|
|
)
|