diff options
author | David Reid <dreid@dreid.org> | 2014-01-06 16:52:56 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-01-06 16:52:56 -0800 |
commit | 7507a1a7692ec7e26817d93dbcea3911eae3864b (patch) | |
tree | c7461173b5cc96ffcdbf7da3fb9f02c244dce821 | |
parent | bbb133ba502044456532a4a2627741ee520859fc (diff) | |
parent | 2b22fae990513eeb4026cd0883bc2e244af8b56a (diff) | |
download | cryptography-7507a1a7692ec7e26817d93dbcea3911eae3864b.tar.gz cryptography-7507a1a7692ec7e26817d93dbcea3911eae3864b.tar.bz2 cryptography-7507a1a7692ec7e26817d93dbcea3911eae3864b.zip |
Merge pull request #412 from alex/version-consistency
Compute the version in the same way as setup.py does
-rw-r--r-- | docs/conf.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index 5dbcdab8..00660314 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,10 +60,13 @@ copyright = '2013-2014, Individual Contributors' # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '0.1dev' -# The full version, including alpha/beta/rc tags. -release = '0.1dev' + +base_dir = os.path.join(os.path.dirname(__file__), os.pardir) +about = {} +with open(os.path.join(base_dir, "cryptography", "__about__.py")) as f: + exec(f.read(), about) + +version = release = about["__version__"] # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |