Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .ci_support/environment-mini.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
channels:
- conda-forge
dependencies:
- pandas =3.0.1
- pyyaml =6.0.3
- jinja2 =3.1.6
- hatchling =1.29.0
- hatch-vcs =0.5.0
9 changes: 2 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup environment
run: |
cp .ci_support/environment.yml environment.yml
sed -i '/defusedxml/d' environment.yml
sed -i '/paramiko/d' environment.yml
sed -i '/tqdm/d' environment.yml
echo -e "channels:\n - conda-forge\n" > .condarc
run: echo -e "channels:\n - conda-forge\n" > .condarc
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.14'
miniforge-version: latest
condarc-file: .condarc
environment-file: environment.yml
environment-file: .ci_support/environment-mini.yml
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

environment-file points to environment-mini.yml, but the new env file lives under .ci_support/environment-mini.yml. As written, the setup-miniconda step likely won’t find the file and the minimal job will fail. Update the path (or copy the file into the workspace like the previous approach).

Suggested change
environment-file: .ci_support/environment-mini.yml
environment-file: .ci_support/environment-mini.yml

Copilot uses AI. Check for mistakes.
- name: Test
shell: bash -l {0}
run: |
Expand Down
Loading