Skip to content

Commit c12ed47

Browse files
committed
Fixes build
1 parent 9873cb9 commit c12ed47

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ env:
1919
# The test-installer job can run with the pyinstaller debug bundle
2020
INSTALLER_USE_DEBUG: false
2121
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
22+
# Python version to be used in the CI
23+
CI_PYTHON_VERSION: 3.12
2224

2325
jobs:
2426

@@ -58,7 +60,7 @@ jobs:
5860
- name: Set up Python
5961
uses: actions/setup-python@v6
6062
with:
61-
python-version: 3.12
63+
python-version: ${{ env.CI_PYTHON_VERSION }}
6264

6365
- uses: actions/checkout@v5
6466

@@ -86,7 +88,7 @@ jobs:
8688
- name: Set up Python
8789
uses: actions/setup-python@v6
8890
with:
89-
python-version: 3.12
91+
python-version: ${{ env.CI_PYTHON_VERSION }}
9092

9193
### Check if this wheel is already cached
9294

@@ -438,6 +440,9 @@ jobs:
438440
needs: [ matrix, installer-matrix ]
439441

440442
strategy:
443+
matrix:
444+
os: [ windows-latest, macos-latest, ubuntu-22.04 ]
445+
python-version: [ 3.12 ]
441446
fail-fast: false
442447
matrix:
443448
include: ${{ fromJson(needs.matrix.outputs.installer-matrix-json) }}

build_tools/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pyparsing
2525
PySide6
2626
pytools
2727
qtconsole
28-
sasdata
28+
sasdata @ git+https://github.com/SasView/sasdata.git@refactor_24
2929
sasmodels
3030
scipy
3131
siphash24

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ requires = [
1313
"periodictable",
1414
"pyopengl",
1515
"pyside6",
16-
"qtconsole",
17-
"scipy",
18-
"superqt",
19-
"sasdata",
16+
"sasdata @ git+https://github.com/SasView/sasdata.git@refactor_24",
2017
"sasmodels",
2118
"twisted",
2219
"uncertainties",

0 commit comments

Comments
 (0)