From 1807880bf7787795724cef73d56f7ee131ef7b9c Mon Sep 17 00:00:00 2001 From: James Frost Date: Wed, 5 Jul 2023 11:51:30 +0100 Subject: [PATCH] Add minimal dev environment to avoid tox issues Currently it was crashing due to tox-conda not supporting tox 4. See https://github.com/tox-dev/tox/issues/2759 for details. --- development.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 development.yaml diff --git a/development.yaml b/development.yaml new file mode 100644 index 000000000..0a5d704c1 --- /dev/null +++ b/development.yaml @@ -0,0 +1,9 @@ +name: cset-dev +channels: + - conda-forge +dependencies: + # Just the dependencies needed during development. Others are pulled in by + # tox. + - pre-commit + - black + - tox-conda