Skip to content

Commit bd730c5

Browse files
committed
fix conda build
1 parent 60a77e8 commit bd730c5

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/publish-conda.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
14+
# Note: Excluded Python 3.14 as conda-build doesn't support it yet
1415

1516
steps:
1617
- uses: actions/checkout@v4
@@ -23,9 +24,11 @@ jobs:
2324
channel-priority: strict
2425
activate-environment: build-env
2526

26-
- name: Install conda-build
27+
- name: Install conda-build and configure solver
2728
shell: bash -l {0}
2829
run: |
30+
# Use classic solver to avoid libmamba compatibility issues
31+
conda config --set solver classic
2932
conda install -y conda-build anaconda-client
3033
3134
- name: Build conda package

.github/workflows/publish-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,11 @@ jobs:
7676
channel-priority: strict
7777
activate-environment: build-env
7878

79-
- name: Install conda-build
79+
- name: Install conda-build and configure solver
8080
shell: bash -l {0}
8181
run: |
82+
# Use classic solver to avoid libmamba compatibility issues
83+
conda config --set solver classic
8284
conda install -y conda-build anaconda-client
8385
8486
- name: Build conda package

0 commit comments

Comments
 (0)