Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Dec 16, 2018
1 parent 1d23e09 commit 45417ce
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.2.0
23 changes: 13 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@
release = version
latex_logo = '_static/pywps.png'

extensions = ['sphinx.ext.extlinks',
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'pywps.ext_autodoc',
]
extensions = [
'sphinx.ext.extlinks',
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'pywps.ext_autodoc'
]

exclude_patterns = ['_build']
source_suffix = '.rst'
master_doc = 'index'
Expand All @@ -37,7 +39,7 @@
html_static_path = ['_static']

htmlhelp_basename = 'PyWPSdoc'
#html_logo = 'pywps.png'
# html_logo = 'pywps.png'

html_theme = 'alabaster'
# alabaster settings
Expand All @@ -59,6 +61,7 @@
'logo_name': False
}


class Mock(object):
def __init__(self, *args, **kwargs):
pass
Expand All @@ -77,7 +80,7 @@ def __getattr__(cls, name):

MOCK_MODULES = ['lxml', 'lxml.etree', 'lxml.builder']

#with open('../requirements.txt') as f:
# with open('../requirements.txt') as f:
# MOCK_MODULES = f.read().splitlines()

for mod_name in MOCK_MODULES:
Expand Down
2 changes: 1 addition & 1 deletion pywps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from lxml.builder import ElementMaker

__version__ = '4.0.0'
__version__ = '4.2.0'

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down

0 comments on commit 45417ce

Please sign in to comment.