-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
732 changed files
with
495 additions
and
401,662 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 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,43 @@ | ||
# This workflow will auto-version when pull-requests are merged to main. | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Version, Changelog, and Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
vcr: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.AMM }} | ||
fetch-depth: 0 | ||
|
||
- name: Conventional Changelog Action | ||
id: changelog | ||
uses: TriPSs/[email protected] | ||
with: | ||
github-token: ${{ secrets.AMM }} | ||
version-file: 'src/qickdawg/version.json' | ||
release-count: 0 | ||
git-message: ${{ github.event.head_commit.message }} | ||
|
||
- name: Create Release | ||
uses: actions/create-release@v1 | ||
if: ${{ steps.changelog.outputs.skipped == 'false' }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.AMM }} | ||
with: | ||
tag_name: ${{ steps.changelog.outputs.tag }} | ||
release_name: ${{ steps.changelog.outputs.tag }} | ||
body: ${{ steps.changelog.outputs.clean_changelog }} |
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 |
---|---|---|
|
@@ -162,4 +162,5 @@ cython_debug/ | |
|
||
.DS_Store | ||
.docs/html | ||
.docs/doctrees | ||
.docs/doctrees | ||
*test.ipynb |
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,18 +1,19 @@ | ||
[build-system] | ||
requires = ["setuptools>=43.0.0", "wheel"] | ||
requires = ["setuptools >= 64.0", "setuptools-scm[toml]>=8.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
[project] | ||
name = "qickdawg" | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"numpy", | ||
"matplotlib", | ||
"pyro4", | ||
"serpent", | ||
"tqdm", | ||
"scipy", | ||
"qick==0.2.160" | ||
"qick==0.2.289" | ||
] | ||
requires-python = ">=3.7" | ||
description = """ | ||
|
@@ -25,15 +26,16 @@ keywords = ["quantum control", "nitrogen vacancy", "fpga", "xilinx", "rfsoc", "q | |
authors = [ | ||
{name = "Andy Mounce", email = "[email protected]"}, | ||
{name = "Emmeline Riendeau", email = "[email protected]"}] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools_scm] | ||
|
||
[project.urls] | ||
Documentation = "https://readthedocs.org" | ||
Repository = "https://github.com/sandialabs/qick-dawg.git" | ||
"Bug Tracker" = "https://github.com/sandialabs/qick-dawg/issues" | ||
|
||
[tool.semantic_release] | ||
version_variables = ["pyproject.toml:data.project.version"] | ||
[tools.setuptools] | ||
packages = ["qickdawg"] | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["qick", "graphics*", "installation*", "jupyter_notebooks*"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.