Skip to content

Commit 4d1c9d2

Browse files
authored
chore: fix conda environment.yml syntax (#2500)
I think the environment file parser got stricter in a recent version of conda/mamba. Errant comma was tolerated before but no longer. Or we just haven't noticed the env was broken. Also fix the benchmarks CI, the job that collects the results needed seaborn.
1 parent 2e452ba commit 4d1c9d2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/benchmark.yml

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ jobs:
8787
- name: Install FloPy
8888
run: uv sync
8989

90+
- name: Install seaborn
91+
run: uv pip install seaborn
92+
9093
- name: Download all artifacts
9194
uses: actions/download-artifact@v4
9295
with:

etc/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
- pytest-cov
3939
- pytest-dotenv
4040
- pytest-xdist
41-
- pyzmq>=25.1.2,
41+
- pyzmq>=25.1.2
4242
- syrupy
4343
- virtualenv
4444

0 commit comments

Comments
 (0)