Skip to content

Commit dad661a

Browse files
committed
Manual test
1 parent a4593ea commit dad661a

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ name: Build Wheels
44

55
on:
66
workflow_dispatch:
7+
inputs:
8+
branch:
9+
description: "Branch to run on"
10+
required: true
11+
default: "main"
712

813
jobs:
914
build_sdist:
@@ -12,8 +17,9 @@ jobs:
1217
strategy:
1318
fail-fast: false
1419
steps:
15-
- uses: actions/checkout@master
20+
- uses: actions/checkout@v4
1621
with:
22+
ref: ${{ github.event.inputs.branch }}
1723
submodules: "recursive"
1824

1925
- name: Build source and wheel

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "qoco"
7-
version = "0.1.7"
7+
version = "0.1.5"
88
description = "QOCO: Quadratic Objective Conic Optimizer"
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)