-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #658 from DiCarloLab-Delft/develop
release v0.3
- Loading branch information
Showing
381 changed files
with
71,186 additions
and
20,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
exclude: 'doc/conf.py' | ||
|
||
repos: | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v2.12.0 | ||
hooks: | ||
- id: pyupgrade | ||
# for now don't force to change from %-operator to {} | ||
args: [--keep-percent-format, --py36-plus] | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.4.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-merge-conflict | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/pre-commit/mirrors-autopep8 | ||
rev: 'v1.5.6' # Use the sha / tag you want to point at | ||
hooks: | ||
- id: autopep8 | ||
args: [--max-line-length=120] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
PycQED Changelog | ||
|
||
Legend: | ||
+ Added feature | ||
* Improved/changed feature, compatible | ||
# Change that breaks existing interface | ||
- Bug fixed | ||
! Known issue / missing feature | ||
. Generic bullet | ||
|
||
|
||
v0.3 - 20211119 | ||
# redesigned DIO timing calibration interface (PR #621): | ||
. DIO modes now defined in instrument_drivers/library/DIO.py instead of individual instrument drivers | ||
. usage: see examples/CC_examples/CC_demo_mux.py "DIO.calibrate" | ||
# support for Central Controller software v0.2.2 (older versions not supported) | ||
. requires OpenQL > 0.8.1.dev4 | ||
# removed support for deprecated hardware (PRs #620 and #646) | ||
+ added support for real-time modulation of waveforms for microwave control | ||
+ added support for mixer skewness calibration with real-time modulation | ||
+ added support for virtual-Z gates | ||
+ added multiple methods for parity check calibration and assessment | ||
+ added multiple methods for parallel qubit calibration | ||
. many more undocumented changes | ||
|
||
v0.2 - 20191213 | ||
. second public release | ||
|
||
v0.1 - 20161012 | ||
. initial public release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import sys | ||
import os | ||
from pathlib import Path | ||
|
||
# parameter handling | ||
path = 0 | ||
if len(sys.argv)>1: | ||
path = sys.argv[1] | ||
else: | ||
raise RuntimeError("missing argument") | ||
|
||
src = Path(path) | ||
if not src.exists(): | ||
raise RuntimeError("path does not exist") | ||
|
||
if src.parts[0] != "pycqed": | ||
raise RuntimeError("path should start with 'pycqed'") | ||
|
||
|
||
dst = Path('deprecated') / src.parent | ||
print(f"mkdir {str(dst)}") | ||
dst.mkdir(parents=True, exist_ok=True) | ||
|
||
cmd = f"git mv {str(src)} {str(dst)}" | ||
print(cmd) | ||
os.system(cmd) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.