Skip to content

Commit 9b5668b

Browse files
Merge pull request #3564 from SasView/build
Fixes build
2 parents 6b3beea + 73bc77e commit 9b5668b

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ env:
1818
INSTALLER_OLD_RUNID: 3204825457
1919
# The test-installer job can run with the pyinstaller debug bundle
2020
INSTALLER_USE_DEBUG: false
21+
# Python version to be used in the CI
22+
CI_PYTHON_VERSION: 3.12
2123

2224
jobs:
2325

@@ -53,7 +55,7 @@ jobs:
5355
- name: Set up Python
5456
uses: actions/setup-python@v5
5557
with:
56-
python-version: 3.11
58+
python-version: ${{ env.CI_PYTHON_VERSION }}
5759

5860
- uses: actions/checkout@v4
5961
- id: set-matrix
@@ -78,7 +80,7 @@ jobs:
7880
- name: Set up Python
7981
uses: actions/setup-python@v5
8082
with:
81-
python-version: 3.11
83+
python-version: ${{ env.CI_PYTHON_VERSION }}
8284

8385
### Compilation of build-dependencies
8486

@@ -378,7 +380,7 @@ jobs:
378380
strategy:
379381
matrix:
380382
os: [ windows-latest, macos-latest, ubuntu-22.04 ]
381-
python-version: [ 3.11 ]
383+
python-version: [ 3.12 ]
382384
fail-fast: false
383385

384386
name: Test installer

.github/workflows/matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
# List of python versions to use for release builds
4141
python_release_list = [
42-
'3.11',
42+
'3.12',
4343
]
4444

4545
# List of python versions to use for tests

build_tools/requirements.txt

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
"hatch-sphinx",
77
"hatch-vcs",
88
"pyside6",
9-
"sasdata",
9+
"sasdata @ git+https://github.com/SasView/sasdata.git@refactor_24",
1010
"sasmodels",
1111
]
1212
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)