-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/HolmPhilip/Qcodes
- Loading branch information
Showing
116 changed files
with
631 additions
and
358 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"devDependencies": { | ||
"pyright": "1.1.389" | ||
"pyright": "1.1.390" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -29,19 +29,21 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
python-version: ["3.10", "3.11", "3.12"] | ||
python-version: ["3.10", "3.11", "3.12", "3.13"] | ||
exclude: | ||
- os: windows-latest | ||
python-version: 3.10 | ||
- os: windows-latest | ||
python-version: 3.11 | ||
- os: windows-latest | ||
python-version: 3.13 | ||
env: | ||
OS: ${{ matrix.os }} | ||
SPHINX_WARNINGS_AS_ERROR: true | ||
SPHINX_OPTS: "-v -j 2" | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | ||
with: | ||
egress-policy: audit | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
@@ -61,7 +63,7 @@ jobs: | |
sudo apt install pandoc | ||
if: runner.os == 'Linux' | ||
- name: Install pandoc on windows | ||
uses: Wandalen/wretry.action@8ceaefd717b7cdae4f2637f9a433242ade421a0a # v3.7.2 | ||
uses: Wandalen/wretry.action@ffdd254f4eaf1562b8a2c66aeaa37f1ff2231179 # v3.7.3 | ||
with: | ||
action: crazy-max/[email protected] | ||
with: | | ||
|
@@ -111,7 +113,7 @@ jobs: | |
steps: | ||
|
||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | ||
with: | ||
egress-policy: audit | ||
|
||
|
@@ -124,7 +126,7 @@ jobs: | |
path: build_docs | ||
|
||
- name: Deploy to gh pages | ||
uses: JamesIves/github-pages-deploy-action@62fec3add6773ec5dbbf18d2ee4260911aa35cf4 # v4.6.9 | ||
uses: JamesIves/github-pages-deploy-action@15de0f09300eea763baee31dff6c6184995c5f6a # v4.7.2 | ||
with: | ||
branch: gh-pages | ||
folder: ${{ github.workspace }}/build_docs/ | ||
|
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
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 @@ | ||
QCoDeS 0.50.0 (2024-11-22) | ||
========================== | ||
|
||
Breaking Changes: | ||
----------------- | ||
|
||
- QCoDeS no longer attempts to automatically disable Sypders User module reloader (UMR). | ||
The code was no longer working correctly with the latest version of Spyder and is not | ||
maintainable since Spyder does not have a public api to disable UMR. If you use | ||
QCoDeS from an editable install it is strongly recommended to disable UMR for QCoDeS. | ||
See :ref:`gettingstarted` for more details. (:pr:`6647`) | ||
|
||
|
||
Improved: | ||
--------- | ||
|
||
- Improves the DataSetDefinition class to allow users to specify metadata to be added to the resulting dataset (:pr:`6643`) | ||
- DelegateParameter now reads delegated properties from source rather than setting them at source change. | ||
This resolves an issue when delegating from another delegate parameter may result in incorrect attributes. (:pr:`6648`) | ||
|
||
|
||
New: | ||
---- | ||
|
||
- Added a new feature to find links in a parameter chain by parameter type (:pr:`6599`) | ||
- Added new methods to find instruments in a parameter chain by parameter type (:pr:`6616`) |
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,8 @@ | ||
QCoDeS 0.50.1 (2024-11-28) | ||
========================== | ||
|
||
Improved: | ||
--------- | ||
|
||
- Fix a regression introduced in 0.50.0 where a DelegateParameter initialized with a None source | ||
would not correctly call get/set on the source parameter when this has been set. (:pr:`6671`) |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
The deprecated and non functional function `qcodes.test()` has been removed. |
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,2 @@ | ||
Fix a regression introduced in 0.50.0 where a DelegateParameter initialized with a None source | ||
would not correctly call get/set on the source parameter when this has been set. |
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
Oops, something went wrong.