From 1de1f3e6079a5a4194bbbdd6320ab709515f888c Mon Sep 17 00:00:00 2001 From: Bmete7 Date: Fri, 12 Dec 2025 13:04:12 +0100 Subject: [PATCH 1/3] :see_no_evil: update gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 5ded358..4afdf48 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ wheels/ # Datasets datasets/ *.h5 +*.png # .vscode @@ -20,6 +21,7 @@ datasets/ # Secrets .env +.env-stg # System files .DS_Store \ No newline at end of file From dad559a39a5fc45682cc74301fec68cdd85b2b27 Mon Sep 17 00:00:00 2001 From: Bmete7 Date: Thu, 12 Feb 2026 21:08:42 +0100 Subject: [PATCH 2/3] :rocket: prepare version 1.0.0 release --- .github/workflows/ci.yml | 41 +++++++++++++++++++++++++++++++++ .github/workflows/publish.yml | 43 +++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..cea6690 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,41 @@ +name: CI + +on: [push] + +env: + PIP_EXTRA_INDEX_URL: https://pypi.org/simple + MQSS_TOKEN: ${{ vars.MQSS_TOKEN }} + +jobs: + setup: + name: Setup Environment + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Install UV + run: curl -LsSf https://astral.sh/uv/install.sh | sh + shell: bash + + - name: Add UV to the environment + run: echo "$HOME/.local/bin" >> $GITHUB_PATH + shell: bash + + - name: Install the project + run: uv sync --all-extras --dev + + - name: Check UV installation + run: uv --version + shell: bash + + - name: List the project dependencies + run: uv pip list + - name: Install Ruff + run: uv pip install ruff + + - name: Run Ruff Linter + run: uv run ruff check . + + - name: Run Pytest + run: uv run pytest -s --maxfail=1 --disable-warnings \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..c7ac514 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,43 @@ +# .github/workflows/publish.yml +name: Publish to PyPI + +on: + push: + tags: + - "v*.*.*" # Trigger on version tags + +jobs: + publish: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: "3.x" + + - name: Install UV + run: curl -LsSf https://astral.sh/uv/install.sh | sh + shell: bash + + - name: Add UV to the environment + run: echo "$HOME/.local/bin" >> $GITHUB_PATH + shell: bash + + - name: Install the project + run: uv sync --all-extras --dev + + - name: Generate lock file + run: uv lock + + - name: Build package + run: uv build + + - name: Publish package + env: + PYPI_USERNAME: __token__ + PYPI_PASSWORD: ${{ secrets.MQSS_PYPI_API_TOKEN }} + run: uv publish -v -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} \ No newline at end of file From f66b4aedb35e2585dd11ae876c8bf027f22d4155 Mon Sep 17 00:00:00 2001 From: Bmete7 Date: Thu, 12 Feb 2026 21:10:32 +0100 Subject: [PATCH 3/3] :rocket: update project description --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eaf8f29..80e1e9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "mqss-benchmarking-framework" -version = "0.1.0" -description = "Add your description here" +version = "1.0.0" +description = "Automated and reproducible benchmarking framework for quantum computing workflows." readme = "README.md" requires-python = ">=3.12" dependencies = [