We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f050a8 commit 3a54eb9Copy full SHA for 3a54eb9
release/setup.py
@@ -51,7 +51,11 @@ def finalize_options(self):
51
52
53
REQUIRED_PACKAGES = ['cirq == 0.8.0', 'pathos == 0.2.5', 'sympy == 1.4']
54
-CUR_VERSION = '0.3.0'
+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']
59
60
61
class BinaryDistribution(Distribution):
@@ -83,6 +87,7 @@ def has_ext_modules(self):
83
87
url='https://github.com/tensorflow/quantum/',
84
88
packages=find_packages(),
85
89
install_requires=REQUIRED_PACKAGES,
90
+ extras_require={'extras': EXTRA_PACKAGES},
86
91
# Add in any packaged data.
92
include_package_data=True,
93
#ext_modules=[Extension('_foo', ['stub.cc'])],
0 commit comments