Skip to content

Commit 017c3ef

Browse files
authored
Add bdist_msi preparation for Python 3.13
Add step to prepare bdist_msi for Python 3.13.
1 parent 48eafa8 commit 017c3ef

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/python_jobs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ jobs:
4545
# Including the actually used python version in the install command works
4646
conda install python=${{ matrix.python-version }} numpy conda-build setuptools setuptools_scm pandas pyqt qttools xlsxwriter openpyxl cx_freeze -c conda-forge -y
4747
48+
- name: Prepare bdist_msi
49+
if: runner.python-version == "3.13"
50+
run: |
51+
# Required for bdist_msi on Python>=3.13
52+
conda install conda-forge::python-msilib
53+
4854
- name: Build & install lpagg with conda
4955
run: |
5056
conda build conda.recipe -c defaults -c conda-forge

0 commit comments

Comments
 (0)