We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4593ea commit dad661aCopy full SHA for dad661a
2 files changed
.github/workflows/build.yml
@@ -4,6 +4,11 @@ name: Build Wheels
4
5
on:
6
workflow_dispatch:
7
+ inputs:
8
+ branch:
9
+ description: "Branch to run on"
10
+ required: true
11
+ default: "main"
12
13
jobs:
14
build_sdist:
@@ -12,8 +17,9 @@ jobs:
17
strategy:
18
fail-fast: false
19
steps:
15
- - uses: actions/checkout@master
20
+ - uses: actions/checkout@v4
16
21
with:
22
+ ref: ${{ github.event.inputs.branch }}
23
submodules: "recursive"
24
25
- name: Build source and wheel
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
[project]
name = "qoco"
-version = "0.1.7"
+version = "0.1.5"
description = "QOCO: Quadratic Objective Conic Optimizer"
readme = "README.md"
requires-python = ">=3.8"
0 commit comments