We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb754df commit ad742f3Copy full SHA for ad742f3
requirements.txt
@@ -1,11 +1,11 @@
1
typing==3.5.2.2 ; python_version>="2.7"
2
avro-python3 ; python_version>="3"
3
avro==1.8.1 ; python_version<"3"
4
+pathlib2==2.1.0 ; python_version<"3.4"
5
ruamel.yaml==0.12.4
6
rdflib==4.2.1
7
rdflib-jsonld==0.4.0
8
html5lib==0.9999999
9
mistune==0.7.3
10
CacheControl==0.11.7
11
lockfile==0.12.2
-pathlib2==2.1.0
schema_salad/ref_resolver.py
@@ -11,10 +11,9 @@
import pprint
12
from StringIO import StringIO
13
try:
14
- # python 3
+ # python >3.3
15
import pathlib
16
except:
17
- # python 2
18
import pathlib2 as pathlib
19
20
from . import validate
0 commit comments