diff --git a/.github/workflows/mamba.yml b/.github/workflows/mamba.yml index 27b5a56..0850fa4 100644 --- a/.github/workflows/mamba.yml +++ b/.github/workflows/mamba.yml @@ -48,7 +48,7 @@ jobs: - name: Write dulwich version to requirements.txt shell: bash run: | - pipenv lock -r | sed -nE 's/(^dulwich==.+$)/\1 --global-option=--pure/p' > requirements.txt + pipenv requirements | sed -nE 's/(^dulwich==.+$)/\1 --global-option=--pure/p' > requirements.txt - name: Install pure dulwich from requirements.txt run: | diff --git a/fetch_dependencies.sh b/fetch_dependencies.sh index f6067a5..2e4eeca 100755 --- a/fetch_dependencies.sh +++ b/fetch_dependencies.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -pipenv run pip install --upgrade --no-binary :all: -r <(pipenv lock -r | sed -E "s/(^dulwich==.+$)/\1 --global-option=--pure/") --target crowd_anki/dist +pipenv run pip install --upgrade --no-binary :all: -r <(pipenv requirements | sed -E "s/(^dulwich==.+$)/\1 --global-option=--pure/") --target crowd_anki/dist