Skip to content

Commit

Permalink
disable warnings until new api is in release
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jun 9, 2022
1 parent b757ce3 commit 1eba7dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
9 changes: 5 additions & 4 deletions qcodes/utils/dataset/doNd.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
)
from qcodes.dataset.plotting import plot_and_save_image as plot

warnings.warn(
"qcodes.utils.dataset.doNd module is deprecated. "
"Please update to import from qcodes.dataset"
)
# todo enable warning once new api is in release
# warnings.warn(
# "qcodes.utils.dataset.doNd module is deprecated. "
# "Please update to import from qcodes.dataset"
# )

__all__ = [
"do0d",
Expand Down
9 changes: 5 additions & 4 deletions qcodes/utils/installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

from qcodes.extensions.installation import register_station_schema_with_vscode

warnings.warn(
"qcodes.utils.installation module is deprecated. "
"Please update to import from qcodes.extensions"
)
# todo enable warning once new api is in release
# warnings.warn(
# "qcodes.utils.installation module is deprecated. "
# "Please update to import from qcodes.extensions"
# )

__all__ = ["register_station_schema_with_vscode"]
9 changes: 5 additions & 4 deletions qcodes/utils/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

from qcodes.extensions.slack import Slack, SlackTimeoutWarning, convert_command

warnings.warn(
"qcodes.utils.slack module is deprecated. "
"Please update to import from qcodes.extensions"
)
# todo enable warning once new api is in release
# warnings.warn(
# "qcodes.utils.slack module is deprecated. "
# "Please update to import from qcodes.extensions"
# )

__all__ = ["Slack", "SlackTimeoutWarning", "convert_command"]

0 comments on commit 1eba7dd

Please sign in to comment.