Skip to content
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

Deprecate QDevil QDAC 1 driver #4932

Merged
merged 4 commits into from
Jan 23, 2023
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
1 change: 1 addition & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ genapi:
../qcodes/instrument_drivers/oxford \
../qcodes/instrument_drivers/Lakeshore \
../qcodes/instrument_drivers/QDev/* \
../qcodes/instrument_drivers/QDevil/* \
../qcodes/instrument_drivers/QuantumDesign/* \
../qcodes/instrument_drivers/rigol/* \
../qcodes/instrument_drivers/rohde_schwarz/* \
Expand Down
2 changes: 2 additions & 0 deletions docs/changes/newsfragments/4932.breaking
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The QDevil QDAC 1 driver has been migrated to qcodes_contrib_drivers and is included from version
0.18.0. The driver in QCoDeS is deprecated and will be removed in a future release.
591 changes: 0 additions & 591 deletions docs/examples/driver_examples/QCodes example with QDevil_QDAC.ipynb

This file was deleted.

1 change: 1 addition & 0 deletions docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ sphinx-apidoc -o _auto -d 10 ..\qcodes ^
..\qcodes\instrument_drivers\oxford ^
..\qcodes\instrument_drivers\QuantumDesign\* ^
..\qcodes\instrument_drivers\QDev\* ^
..\qcodes\instrument_drivers\QDevil\* ^
..\qcodes\instrument_drivers\rigol\* ^
..\qcodes\instrument_drivers\rohde_schwarz\* ^
..\qcodes\instrument_drivers\stahl\* ^
Expand Down
2 changes: 2 additions & 0 deletions qcodes/instrument_drivers/QDevil/QDevil_QDAC.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from qcodes import validators as vals
from qcodes.instrument import ChannelList, InstrumentChannel, VisaInstrument
from qcodes.parameters import MultiChannelInstrumentParameter, ParamRawDataType
from qcodes.utils import deprecate

LOG = logging.getLogger(__name__)

Expand Down Expand Up @@ -188,6 +189,7 @@ def get_raw(self) -> Tuple[ParamRawDataType, ...]:
return output


@deprecate(alternative="QDevil QDAC 1 driver in qcodes_contrib_drivers.")
class QDac(VisaInstrument):
"""
Channelised driver for the QDevil QDAC voltage source.
Expand Down