Skip to content

Properly use links in docs for external urls #5220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cirq-aqt/cirq_aqt/aqt_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
The device is based on a linear calcium ion string with
arbitrary connectivity. For more information see:

https://quantumoptics.at/en/publications/journal-articles.html
[https://quantumoptics.at/en/publications/journal-articles.html](https://quantumoptics.at/en/publications/journal-articles.html){:.external}

https://iopscience.iop.org/article/10.1088/1367-2630/15/12/123012/meta
[https://iopscience.iop.org/article/10.1088/1367-2630/15/12/123012/meta](https://iopscience.iop.org/article/10.1088/1367-2630/15/12/123012/meta){:.external}

The native gate set consists of the local gates: X,Y, and XX entangling gates

"""

import json
from typing import Any, cast, Dict, Optional, Sequence, List, Tuple, Union
import numpy as np
Expand Down
4 changes: 2 additions & 2 deletions cirq-aqt/cirq_aqt/aqt_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"""Samplers to access the AQT ion trap devices via the provided API. For
more information on these devices see the AQT homepage:

https://www.aqt.eu
[https://www.aqt.eu](https://www.aqt.eu){:.external}

API keys for classical simulators and quantum devices can be obtained at:

https://gateway-portal.aqt.eu/
[https://gateway-portal.aqt.eu/](https://gateway-portal.aqt.eu/){:.external}

"""

Expand Down
5 changes: 2 additions & 3 deletions cirq-google/cirq_google/engine/runtime_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Utility functions to estimate runtime using Engine to execute circuits.

Users can call estimate_run_time, estimate_run_sweep_time, or
Expand All @@ -25,12 +24,12 @@
Parameters were calculated using a variety of width/depth/sweeps from
the rep rate calculator, see:

https://github.com/quantumlib/ReCirq/blob/master/recirq/benchmarks/rep_rate/
[https://github.com/quantumlib/ReCirq/blob/master/recirq/benchmarks/rep_rate/](https://github.com/quantumlib/ReCirq/blob/master/recirq/benchmarks/rep_rate/){:.external}

Model was then fitted by hand, correcting for anomalies and outliers
when possible.

"""

from typing import List, Optional, Sequence
import cirq

Expand Down
2 changes: 1 addition & 1 deletion dev_tools/conf/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ enable=
yield-outside-function

# Ignore long lines containing urls or pylint directives.
ignore-long-lines=^(.*#\w*pylint: disable.*|\s*(# )?<?https?://\S+>?)$
ignore-long-lines=^(.*#\w*pylint: disable.*|\s*(# )?[<\[\(]?https?://\S+[>\]\)]?)$

[TYPECHECK]

Expand Down