File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 runs-on : ubuntu-latest
2929 strategy :
3030 matrix :
31- python-version : ["3.6 ", "3.x"]
31+ python-version : ["3.7 ", "3.x"]
3232 name : test-v${{matrix.python-version}}
3333
3434 steps :
Original file line number Diff line number Diff line change @@ -280,9 +280,9 @@ def request_json(
280280 "like Gecko) Chrome/79.0.3945.88 Safari/537.36"
281281 )
282282
283- initial_cache_state = session ._is_cache_disabled # yes, i'm a bad person
283+ initial_cache_state = session ._disabled # yes, i'm a bad person
284284 try :
285- session ._is_cache_disabled = not cache
285+ session ._disabled = not cache
286286 response = session .request (
287287 url = url ,
288288 params = parameters ,
@@ -297,7 +297,7 @@ def request_json(
297297 content = None
298298 status = 500
299299 finally :
300- session ._is_cache_disabled = initial_cache_state
300+ session ._disabled = initial_cache_state
301301 return status , content
302302
303303
Original file line number Diff line number Diff line change 11appdirs == 1.4.*
22babelfish == 0.6.*
3- dataclasses ; python_version < '3.7'
43guessit == 3.2.*
5- requests_cache == 0.5 .*
4+ requests_cache == 0.8 .*
65requests == 2.*
76teletype == 1.1.*
87wheel
Original file line number Diff line number Diff line change 2222 long_description_content_type = "text/markdown" ,
2323 name = "mnamer" ,
2424 packages = ["mnamer" ],
25- python_requires = "~=3.6 " ,
25+ python_requires = "~=3.7 " ,
2626 url = "https://github.com/jkwill87/mnamer" ,
2727 version = VERSION ,
2828)
You can’t perform that action at this time.
0 commit comments