@@ -278,77 +278,77 @@ def _build_demo(
278278 # and various plugins.
279279 # TODO: See if we can clean this up and streamline in the future...
280280 # TODO: Remove RC branch for PennyLane install post-release.
281- if dev and execute :
282- # Cirq
283- cmds .pip_install (
284- build_venv .python ,
285- "--upgrade" ,
286- "git+https://github.com/PennyLaneAI/pennylane-cirq.git#egg=pennylane-cirq" ,
287- use_uv = False ,
288- quiet = False ,
289- )
290- # Qiskit
291- cmds .pip_install (
292- build_venv .python ,
293- "--upgrade" ,
294- "git+https://github.com/PennyLaneAI/pennylane-qiskit.git#egg=pennylane-qiskit" ,
295- use_uv = False ,
296- quiet = False ,
297- )
298- # Qulacs
299- cmds .pip_install (
300- build_venv .python ,
301- "--upgrade" ,
302- "git+https://github.com/PennyLaneAI/pennylane-qulacs.git#egg=pennylane-qulacs" ,
303- use_uv = False ,
304- quiet = False ,
305- )
306- # Catalyst
307- cmds .pip_install (
308- build_venv .python ,
309- "--upgrade" ,
310- "--extra-index-url" ,
311- "https://test.pypi.org/simple/" ,
312- "PennyLane-Catalyst" ,
313- use_uv = False ,
314- quiet = False ,
315- pre = True ,
316- )
317- # Lightning
318- cmds .pip_install (
319- build_venv .python ,
320- "--upgrade" ,
321- "--extra-index-url" ,
322- "https://test.pypi.org/simple/" ,
323- "PennyLane-Lightning" ,
324- use_uv = False ,
325- quiet = False ,
326- pre = True ,
327- )
328- # PennyLane
329- cmds .pip_install (
330- build_venv .python ,
331- "--upgrade" ,
332- "git+https://github.com/PennyLaneAI/pennylane.git@v0.42.0-rc0#egg=pennylane" ,
333- use_uv = False ,
334- quiet = False ,
335- )
336- # Iqpopt
337- cmds .pip_install (
338- build_venv .python ,
339- "--upgrade" ,
340- "git+https://github.com/XanaduAI/iqpopt.git#egg=iqpopt" ,
341- use_uv = False ,
342- quiet = False ,
343- )
344- # We need to bump flax here, after Jax has been bumped by Catalyst
345- cmds .pip_install (
346- build_venv .python ,
347- "--upgrade" ,
348- "flax==0.10.6" ,
349- use_uv = False ,
350- quiet = False ,
351- )
281+ # if dev and execute:
282+ # # Cirq
283+ # cmds.pip_install(
284+ # build_venv.python,
285+ # "--upgrade",
286+ # "git+https://github.com/PennyLaneAI/pennylane-cirq.git#egg=pennylane-cirq",
287+ # use_uv=False,
288+ # quiet=False,
289+ # )
290+ # # Qiskit
291+ # cmds.pip_install(
292+ # build_venv.python,
293+ # "--upgrade",
294+ # "git+https://github.com/PennyLaneAI/pennylane-qiskit.git#egg=pennylane-qiskit",
295+ # use_uv=False,
296+ # quiet=False,
297+ # )
298+ # # Qulacs
299+ # cmds.pip_install(
300+ # build_venv.python,
301+ # "--upgrade",
302+ # "git+https://github.com/PennyLaneAI/pennylane-qulacs.git#egg=pennylane-qulacs",
303+ # use_uv=False,
304+ # quiet=False,
305+ # )
306+ # # Catalyst
307+ # cmds.pip_install(
308+ # build_venv.python,
309+ # "--upgrade",
310+ # "--extra-index-url",
311+ # "https://test.pypi.org/simple/",
312+ # "PennyLane-Catalyst",
313+ # use_uv=False,
314+ # quiet=False,
315+ # pre=True,
316+ # )
317+ # # Lightning
318+ # cmds.pip_install(
319+ # build_venv.python,
320+ # "--upgrade",
321+ # "--extra-index-url",
322+ # "https://test.pypi.org/simple/",
323+ # "PennyLane-Lightning",
324+ # use_uv=False,
325+ # quiet=False,
326+ # pre=True,
327+ # )
328+ # # PennyLane
329+ # cmds.pip_install(
330+ # build_venv.python,
331+ # "--upgrade",
332+ # "git+https://github.com/PennyLaneAI/pennylane.git@v0.42.0-rc0#egg=pennylane",
333+ # use_uv=False,
334+ # quiet=False,
335+ # )
336+ # # Iqpopt
337+ # cmds.pip_install(
338+ # build_venv.python,
339+ # "--upgrade",
340+ # "git+https://github.com/XanaduAI/iqpopt.git#egg=iqpopt",
341+ # use_uv=False,
342+ # quiet=False,
343+ # )
344+ # # We need to bump flax here, after Jax has been bumped by Catalyst
345+ # cmds.pip_install(
346+ # build_venv.python,
347+ # "--upgrade",
348+ # "flax==0.10.6",
349+ # use_uv=False,
350+ # quiet=False,
351+ # )
352352
353353 stage_dir = ctx .build_dir / "demonstrations"
354354 fs .clean_dir (stage_dir )
0 commit comments