Skip to content

Commit 564ad58

Browse files
committed
Increment version number
1 parent ec730c3 commit 564ad58

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Diff for: .appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.3.{build}-{branch}
1+
version: 0.3.1.{build}-{branch}
22

33
pull_requests:
44
do_not_increment_build_number: true

Diff for: qucumber/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.0"
1+
__version__ = "0.3.1"

Diff for: setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
with open("README.md", "r") as fh:
2424
long_description = fh.read()
2525

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

3030
install_requires = [
3131
"torch>=0.4.1,<0.4.2; sys_platform != 'win32'",
@@ -34,6 +34,8 @@
3434
"matplotlib>=2.2",
3535
]
3636

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

@@ -81,7 +83,7 @@
8183

8284
setuptools.setup(
8385
name="qucumber",
84-
version=init_file["__version__"],
86+
version=version_file["__version__"],
8587
description="Neural Network Quantum State Tomography.",
8688
long_description=long_description,
8789
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)