Skip to content

Commit

Permalink
feat: update requirements.txt to include vcrpy
Browse files Browse the repository at this point in the history
  • Loading branch information
martinalbert committed May 20, 2024
1 parent 2972827 commit 9a6f0e8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
# dependecies required for python versions 3.8 - 3.12
build==1.2.1; python_version >= '3.8'
certifi==2024.2.2; python_version >= '3.8'
charset-normalizer==3.3.2; python_version >= '3.8'
idna==3.7; python_version >= '3.8'
packaging==24.0; python_version >= '3.8'
pyproject_hooks==1.1.0; python_version >= '3.8'
requests==2.31.0; python_version >= '3.8'
urllib3==2.2.1; python_version >= '3.8'
# dependecies required for testing (due to vcrpy)
multidict==6.0.5; python_version >= '3.8'
PyYAML==6.0.1; python_version >= '3.8'
vcrpy==6.0.1; python_version >= '3.8'
wrapt==1.16.0; python_version >= '3.8'
yarl==1.9.4; python_version >= '3.8'

# dependecies required for python versions 3.8 - 3.10
importlib_metadata==7.1.0; python_version == '3.8' or python_version == '3.9'
tomli==2.0.1; python_version == '3.8' or python_version == '3.9' or python_version == '3.10'
zipp==3.18.1; python_version == '3.8' or python_version == '3.9'

# other dependecies
urllib3==2.2.1; python_version >= '3.10'
urllib3==1.26.18; python_version == '3.8' or python_version == '3.9' # conflicting with vcrpy on these versions

0 comments on commit 9a6f0e8

Please sign in to comment.