File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- v1.2.0 (in development)
1+ v1.1.1 (in development)
22-----------------------
33- Support Python 3.11
4+ - Support cachecontrol 0.13
45
56v1.1.0 (2021-11-08)
67-------------------
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Changelog
66v1.2.0 (in development)
77-----------------------
88- Support Python 3.11
9+ - Support cachecontrol 0.13
910
1011
1112v1.1.0 (2021-11-08)
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ package_dir =
4545include_package_data = True
4646python_requires = >=3.7
4747install_requires =
48- cachecontrol[filecache] ~ = 0.12.0
48+ cachecontrol[filecache] > = 0.12, < 0.14
4949 click >= 8.0
5050 platformdirs ~= 2.1
5151 pydantic ~= 1.7
Original file line number Diff line number Diff line change 1919
2020from __future__ import annotations
2121
22- __version__ = "1.2.0 .dev1"
22+ __version__ = "1.1.1 .dev1"
2323__author__ = "John Thorvald Wodder II"
2424__author_email__ = "pyversion-info@varonathe.org"
2525__license__ = "MIT"
@@ -92,7 +92,7 @@ def fetch(
9292 """
9393 s = requests .Session ()
9494 if cache_dir is not None :
95- s = CacheControl (s , cache = FileCache (cache_dir ))
95+ s = CacheControl (s , cache = FileCache (str ( cache_dir ) ))
9696 with s :
9797 r = s .get (url )
9898 r .raise_for_status ()
You can’t perform that action at this time.
0 commit comments