Skip to content

Commit

Permalink
Merge pull request #244 from jdepoix/bugfix/requests-version
Browse files Browse the repository at this point in the history
fixed requests version
  • Loading branch information
jdepoix authored Dec 27, 2023
2 parents 1397e64 + 54bf7d0 commit f5c9e16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ install:
- pip install --upgrade pip
- pip install --upgrade setuptools
- pip install -r requirements.txt
- pip install urllib3==1.26.6
script:
- coverage run -m unittest discover
after_success:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests>=2.31.0
requests

# testing
mock==3.0.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_test_suite():
"Operating System :: OS Independent",
),
install_requires=[
'requests>=2.31.0',
'requests',
],
tests_require=[
'mock',
Expand Down

0 comments on commit f5c9e16

Please sign in to comment.