Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Commit

Permalink
Remove Aer tutorials (#1776)
Browse files Browse the repository at this point in the history
These now live in Aer itself, per
Qiskit/qiskit-aer#1768. Terra docs should no
longer include Aer directly.

Once this PR lands, we will delete the tutorials from the
qiskit-tutorials repo.
  • Loading branch information
Eric-Arellano authored Jul 17, 2023
1 parent c465dc1 commit 79d92a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
3 changes: 2 additions & 1 deletion docs/custom_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def load_tutorials(app):
["git", "clone", "https://github.com/Qiskit/qiskit-tutorials", temp_dir],
capture_output=True,
)
shutil.copytree(Path(temp_dir, "tutorials"), Path(app.srcdir, "tutorials"))
for d in ["algorithms", "circuits", "circuits_advanced", "operators"]:
shutil.copytree(Path(temp_dir, "tutorials", d), Path(app.srcdir, "tutorials", d))


def clean_docs(app, exc):
Expand Down
8 changes: 0 additions & 8 deletions docs/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ Advanced circuits

tutorials/circuits_advanced/*

Classical simulators
====================

.. nbgallery::
:glob:

tutorials/simulators/*

Algorithms
==========

Expand Down

0 comments on commit 79d92a9

Please sign in to comment.