Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
richardzhu committed Jul 28, 2017
2 parents d7bede2 + 093fb99 commit 703bfa6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
]

import sphinx_rtd_theme
import os
from pyquil import __version__


def remove_secrets(app, what, name, obj, options, signature, return_annotation):
if what == "class" and name == "pyquil.api.Connection":
Expand Down Expand Up @@ -85,9 +86,9 @@ def setup(app):
# built documents.
#
# The short X.Y version.
version = u'1.1.0'
version = __version__
# The full version, including alpha/beta/rc tags.
release = u'1.1.0'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions pyquil/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.1.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
##############################################################################

from setuptools import setup
from pyquil import __version__

setup(
name="pyquil",
version="1.1.0",
version=__version__,
author="Rigetti Computing",
author_email="[email protected]",
description="A Python library to generate Quantum Instruction Language (Quil) Programs.",
url="https://github.com/rigetticomputing/pyquil.git",
download_url="https://github.com/rigetticomputing/pyquil/tarball/1.1.0",
packages=["pyquil"],
license="LICENSE",
install_requires=[
Expand Down

0 comments on commit 703bfa6

Please sign in to comment.