Merge pull request #244 from jdepoix/bugfix/requests-version

fixed requests version
This commit is contained in:
Jonas Depoix 2023-12-27 13:39:47 +01:00 committed by GitHub
commit f5c9e16b61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ install:
- pip install --upgrade pip - pip install --upgrade pip
- pip install --upgrade setuptools - pip install --upgrade setuptools
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install urllib3==1.26.6
script: script:
- coverage run -m unittest discover - coverage run -m unittest discover
after_success: after_success:

View File

@ -1,4 +1,4 @@
requests>=2.31.0 requests
# testing # testing
mock==3.0.5 mock==3.0.5

View File

@ -42,7 +42,7 @@ setuptools.setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
), ),
install_requires=[ install_requires=[
'requests>=2.31.0', 'requests',
], ],
tests_require=[ tests_require=[
'mock', 'mock',