Skip to content

Commit

Permalink
Merge pull request #174 from aplaice/fix_pipenv_lock_r
Browse files Browse the repository at this point in the history
Update to latest pipenv and fix our tests
  • Loading branch information
aplaice authored Nov 6, 2022
2 parents fcc0e29 + fa7702f commit e3ecd61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mamba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion fetch_dependencies.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e3ecd61

Please sign in to comment.