Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/actions/install-wheel/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ inputs:
required: true
os:
required: true
release-build:
required: false

runs:
using: "composite"
Expand Down Expand Up @@ -58,7 +60,7 @@ runs:
uv pip install dist/*whl

- name: Install Python dependencies
if: ${{ ! env.RELEASE_BRANCH_BUILD }}
if: ${{ ! inputs.release-build }}
shell: bash
run: |
uv pip install -r build_tools/requirements.txt
Expand All @@ -67,7 +69,7 @@ runs:
### For pull_requests with the release branch as the base -or- branches with the name *release*

- name: Install Python dependencies for release branches
if: ${{ env.RELEASE_BRANCH_BUILD }}
if: ${{ inputs.release-build }}
shell: bash
run: |
uv pip install --no-deps -r build_tools/requirements-release-${{ matrix.os }}.txt
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
release-build: ${{ env.RELEASE_BRANCH_BUILD }}

### Run tests

Expand Down
2 changes: 1 addition & 1 deletion build_tools/requirements-release-macos-latest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ beautifulsoup4==4.14.3
bidict==0.23.1
blinker==1.9.0
BTrees==6.4
bumps==1.0.4
bumps==1.0.5rc0
certifi==2026.4.22
cffi==2.0.0
cfgv==3.5.0
Expand Down
2 changes: 1 addition & 1 deletion build_tools/requirements-release-ubuntu-22.04.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ beautifulsoup4==4.14.3
bidict==0.23.1
blinker==1.9.0
BTrees==6.4
bumps==1.0.4
bumps==1.0.5rc0
certifi==2026.4.22
cffi==2.0.0
cfgv==3.5.0
Expand Down
2 changes: 1 addition & 1 deletion build_tools/requirements-release-ubuntu-latest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ beautifulsoup4==4.14.3
bidict==0.23.1
blinker==1.9.0
BTrees==6.4
bumps==1.0.4
bumps==1.0.5rc0
certifi==2026.4.22
cffi==2.0.0
cfgv==3.5.0
Expand Down
2 changes: 1 addition & 1 deletion build_tools/requirements-release-windows-latest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ beautifulsoup4==4.14.3
bidict==0.23.1
blinker==1.9.0
BTrees==6.4
bumps==1.0.4
bumps==1.0.5rc0
certifi==2026.4.22
cffi==2.0.0
cfgv==3.5.0
Expand Down
2 changes: 1 addition & 1 deletion src/sas/qtgui/Utilities/PlotView.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def _parse_stats(self):
if parsed:
# Use parse_var to extract all values, then format them for display
row_data = [
parsed.name,
parsed.label,
f"{parsed.mean:.6g}",
f"{parsed.median:.6g}",
f"{parsed.best:.6g}",
Expand Down
Loading