From 9a7a960c4f70bfa6e3e5b4763f2a5467c9882af2 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 25 Oct 2024 11:26:35 +0200 Subject: [PATCH] #48 fix if normal jupytext installation fails, it will run it with --break-system-packages which solved the issue during the tests --- .github/workflows/sync-notebook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-notebook.yml b/.github/workflows/sync-notebook.yml index 5f98f68..dfd0b18 100644 --- a/.github/workflows/sync-notebook.yml +++ b/.github/workflows/sync-notebook.yml @@ -14,7 +14,7 @@ jobs: - name: installing & running jupytext run: | - pip install jupytext + pip install jupytext || pip install jupytext --break-system-packages jupytext --set-formats ipynb,md article.ipynb jupytext --sync article.ipynb