Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Nov 11, 2019
1 parent ffa19ca commit 7b22fe6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
import os
import sys

sys.path.insert(0, os.path.abspath("../.."))
root_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
sys.path.insert(0, root_dir)
# print(sys.path)

# -- General configuration ------------------------------------------------
Expand Down Expand Up @@ -58,16 +59,17 @@
# General information about the project.
project = "graphtools"
copyright = "2018 Krishnaswamy Lab, Yale University"
author = "Jay Stanley and Scott Gigante, Krishnaswamy Lab, Yale University"
author = "Scott Gigante and Jay Stanley, Yale University"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "0.1.3"
version_py = os.path.join(root_dir, "graphtools", "version.py")
# The full version, including alpha/beta/rc tags.
release = "0.1.3"
release = open(version_py).read().strip().split("=")[-1].replace('"', "").strip()
# The short X.Y version.
version = release.split("-")[0]

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -138,7 +140,7 @@
master_doc,
"graphtools.tex",
"graphtools Documentation",
"Jay Stanley and Scott Gigante, Krishnaswamy Lab, Yale University",
"Scott Gigante and Jay Stanley, Yale University",
"manual",
),
]
Expand Down
2 changes: 1 addition & 1 deletion graphtools/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.2a0"
__version__ = "1.4.0"

0 comments on commit 7b22fe6

Please sign in to comment.