Skip to content

Commit

Permalink
Fixed search path for Python modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Oct 12, 2019
1 parent 377c77b commit f5b2a38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('../pyIPXACT'))
#sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))
#sys.path.insert(0, os.path.abspath('../pyIPXACT'))
#sys.path.insert(0, os.path.abspath('_extensions'))
#sys.path.insert(0, os.path.abspath('_themes/sphinx_rtd_theme'))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

setuptools.setup(
name="pyIPXACT",
version="0.1.1",
version="0.1.2",
author="Patrick Lehmann",
author_email="Paebbels@gmail.com",
description="A Document-Object-Model (DOM) for IP-XACT files.",
Expand Down

0 comments on commit f5b2a38

Please sign in to comment.