Skip to content

Commit 3a54eb9

Browse files
Cherry pick (#333) onto v0.3.0.
1 parent 1f050a8 commit 3a54eb9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

release/setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ def finalize_options(self):
5151

5252

5353
REQUIRED_PACKAGES = ['cirq == 0.8.0', 'pathos == 0.2.5', 'sympy == 1.4']
54-
CUR_VERSION = '0.3.0'
54+
CUR_VERSION = '0.3.1'
55+
56+
# placed as extra to not have required overwrite existing nightly installs if
57+
# they exist.
58+
EXTRA_PACKAGES = ['tensorflow == 2.1.0']
5559

5660

5761
class BinaryDistribution(Distribution):
@@ -83,6 +87,7 @@ def has_ext_modules(self):
8387
url='https://github.com/tensorflow/quantum/',
8488
packages=find_packages(),
8589
install_requires=REQUIRED_PACKAGES,
90+
extras_require={'extras': EXTRA_PACKAGES},
8691
# Add in any packaged data.
8792
include_package_data=True,
8893
#ext_modules=[Extension('_foo', ['stub.cc'])],

0 commit comments

Comments
 (0)