We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48eafa8 commit 017c3efCopy full SHA for 017c3ef
1 file changed
.github/workflows/python_jobs.yml
@@ -45,6 +45,12 @@ jobs:
45
# Including the actually used python version in the install command works
46
conda install python=${{ matrix.python-version }} numpy conda-build setuptools setuptools_scm pandas pyqt qttools xlsxwriter openpyxl cx_freeze -c conda-forge -y
47
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
+
54
- name: Build & install lpagg with conda
55
run: |
56
conda build conda.recipe -c defaults -c conda-forge
0 commit comments