Skip to content

Commit 8c3cc4b

Browse files
committed
try ubuntu with conda-forge channel only, no defaults
1 parent c779ee1 commit 8c3cc4b

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/build-conda.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
15+
# os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
16+
os: [ubuntu-latest]
1617
name: Build Anaconda packages on ${{ matrix.os }}
1718

1819
steps:
@@ -37,11 +38,12 @@ jobs:
3738
auto-update-conda: true
3839
python-version: 3.12
3940
channels: conda-forge
41+
conda-remove-defaults: true
4042

4143
- name: Prepare conda environment
4244
shell: bash -el {0}
4345
run: |
44-
conda install conda-build conda-verify anaconda-client
46+
conda install conda-build anaconda-client
4547
mkdir build_output
4648
4749
- name: Build packages for ${{ matrix.os }}

packaging/conda/conda_build_config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
python:
2-
- 3.10
3-
- 3.11
4-
- 3.12
2+
# - 3.10
3+
# - 3.11
4+
# - 3.12
55
- 3.13 # [arm64 or linux64 or win]
66
numpy:
7-
- 2.0
8-
- 2.0
9-
- 2.0
7+
# - 2.0
8+
# - 2.0
9+
# - 2.0
1010
- 2.1 # [arm64 or linux64 or win]
1111
zip_keys:
1212
- python

0 commit comments

Comments
 (0)