File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 26
26
from ruamel import yaml
27
27
from ruamel .yaml .comments import CommentedMap
28
28
from schema_salad .exceptions import SchemaSaladException , ValidationException
29
- from schema_salad .ref_resolver import Fetcher
29
+ from schema_salad .fetcher import DefaultFetcher , Fetcher
30
30
from schema_salad .sourceline import SourceLine , add_lc_filename
31
31
32
32
_vocab = {} # type: Dict[str, str]
@@ -70,7 +70,6 @@ def __init__(
70
70
import requests
71
71
from cachecontrol .wrapper import CacheControl
72
72
from cachecontrol .caches import FileCache
73
- from schema_salad .ref_resolver import DefaultFetcher
74
73
75
74
if "HOME" in os .environ :
76
75
session = CacheControl (
Original file line number Diff line number Diff line change 26
26
from ruamel import yaml
27
27
from ruamel .yaml .comments import CommentedMap
28
28
from schema_salad .exceptions import SchemaSaladException , ValidationException
29
- from schema_salad .ref_resolver import Fetcher
29
+ from schema_salad .fetcher import DefaultFetcher , Fetcher
30
30
from schema_salad .sourceline import SourceLine , add_lc_filename
31
31
32
32
_vocab = {} # type: Dict[str, str]
@@ -70,7 +70,6 @@ def __init__(
70
70
import requests
71
71
from cachecontrol .wrapper import CacheControl
72
72
from cachecontrol .caches import FileCache
73
- from schema_salad .ref_resolver import DefaultFetcher
74
73
75
74
if "HOME" in os .environ :
76
75
session = CacheControl (
Original file line number Diff line number Diff line change 14
14
'ruamel.yaml' ,
15
15
'six' ,
16
16
'requests' ,
17
- 'schema_salad <7 ' ,
17
+ 'schema-salad >= 7, < 8 ' ,
18
18
'typing_extensions' ,
19
19
],
20
20
setup_requires = ['pytest-runner' ],
You can’t perform that action at this time.
0 commit comments