Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
emerali committed Sep 3, 2018
1 parent ec730c3 commit 564ad58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.3.{build}-{branch}
version: 0.3.1.{build}-{branch}

pull_requests:
do_not_increment_build_number: true
Expand Down
2 changes: 1 addition & 1 deletion qucumber/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
with open("README.md", "r") as fh:
long_description = fh.read()

init_file = {}
version_file = {}
with open(os.path.join("qucumber", "__version__.py"), "r") as f:
exec(f.read(), init_file)
exec(f.read(), version_file)

install_requires = [
"torch>=0.4.1,<0.4.2; sys_platform != 'win32'",
Expand All @@ -34,6 +34,8 @@
"matplotlib>=2.2",
]

# because RTD runs out of memory when using `pip install -e .[rtd]` to install
# docs dependencies for some reason
with open(".build_tools/readthedocs/requirements.txt", "r") as reqs:
rtd_requires = [line.strip() for line in reqs.readlines()]

Expand Down Expand Up @@ -81,7 +83,7 @@

setuptools.setup(
name="qucumber",
version=init_file["__version__"],
version=version_file["__version__"],
description="Neural Network Quantum State Tomography.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 564ad58

Please sign in to comment.