From d714ddd4078d6c88c411cc1ca7807ba6c98fc5af Mon Sep 17 00:00:00 2001
From: Colm Talbot <colm.talbot@ligo.org>
Date: Wed, 8 May 2024 19:43:55 +0000
Subject: [PATCH] ENV: fix conda-forge name for myst-parser

---
 .gitlab-ci.yml              | 3 +++
 containers/env-template.yml | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 02803f2e2..a9043a807 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,6 +42,9 @@ containers:
     # Fail if differences exist. If this fails, you may need to run
     # write_dockerfiles.py and commit the changes.
     - git diff --exit-code
+    - cp env-template.yml env.yml
+    - echo "  - python=3.10" >> env.yml
+    - mamba env create -f env.yml -n test --dry-run
 
 .test-python: &test-python
   stage: initial
diff --git a/containers/env-template.yml b/containers/env-template.yml
index c2b050c33..647709a27 100644
--- a/containers/env-template.yml
+++ b/containers/env-template.yml
@@ -69,7 +69,7 @@ dependencies:
   - nbconvert
   - twine
   - glasflow
-  - myst_parser
+  - myst-parser
   - pip:
     - autodoc
     - ipykernel
-- 
GitLab