mirror of
https://github.com/github/codeql-action
synced 2026-05-31 00:00:46 +03:00
Fix failing python tests
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.
This commit is contained in:
@@ -7,6 +7,6 @@ from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="example-setup.py",
|
||||
install_requires=["requests==1.2.3"],
|
||||
install_requires=["requests==2.26.0"],
|
||||
python_requires=">=2.7, <3",
|
||||
)
|
||||
|
||||
@@ -7,6 +7,6 @@ from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="example-setup.py",
|
||||
install_requires=["requests==1.2.3"],
|
||||
python_requires='>=3.5',
|
||||
install_requires=["requests==2.26.0"],
|
||||
python_requires='>=3.7',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user