Skip to content

Commit

Permalink
Add version constraint typing >= 3.5.2 so ruamel typechecks work. (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetron authored Aug 20, 2016
1 parent 6fb2969 commit 5dff7db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions schema_salad/makedoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import copy
import re
import sys
import StringIO
from StringIO import StringIO
import logging
import urlparse
from .aslist import aslist
Expand Down Expand Up @@ -153,7 +153,7 @@ class RenderType(object):

def __init__(self, toc, j, renderlist, redirects):
# type: (ToC, List[Dict], str, Dict) -> None
self.typedoc = StringIO.StringIO()
self.typedoc = StringIO()
self.toc = toc
self.subs = {} # type: Dict[str, str]
self.docParent = {} # type: Dict[str, List]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
'rdflib >= 4.1.0',
'rdflib-jsonld >= 0.3.0',
'mistune',
'typing',
'typing >= 3.5.2',
'CacheControl',
'lockfile']

Expand All @@ -46,7 +46,7 @@
extras_require = {} # TODO: to be removed when the above is added

setup(name='schema-salad',
version='1.16',
version='1.17',
description='Schema Annotations for Linked Avro Data (SALAD)',
long_description=open(README).read(),
author='Common workflow language working group',
Expand Down

0 comments on commit 5dff7db

Please sign in to comment.