Skip to content

Commit b97745e

Browse files
committed
Fixes 3rd try
1 parent 942f96e commit b97745e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build_workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
python-version: ["3.11", "3.12", "3.13"]
39+
python-version: [3.11] # Use only 3.11 for stability
4040
defaults:
4141
run:
4242
shell: bash -l {0}
@@ -63,6 +63,8 @@ jobs:
6363
channel-priority: strict
6464
auto-update-conda: true
6565
python-version: ${{ matrix.python-version }}
66+
channels: conda-forge
67+
use-only-tar-bz2: true
6668

6769
- name: Fix pip and setuptools for Python 3.12+
6870
run: |
@@ -150,4 +152,4 @@ jobs:
150152
branch: gh-pages
151153
directory: gh-pages
152154
github_token: ${{ secrets.GITHUB_TOKEN }}
153-
force: true
155+
force: true

conda/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: zstash_dev
22
channels:
33
- conda-forge
4-
- defaults
4+
- nodefaults # This replaces 'defaults' to avoid Anaconda commercial repos
55
dependencies:
66
# Base
77
# =================

0 commit comments

Comments
 (0)