Skip to content

Commit

Permalink
chore: unpin dependency versions (DEV-983) (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Jun 17, 2022
1 parent 7948e75 commit 5c56601
Show file tree
Hide file tree
Showing 5 changed files with 283 additions and 288 deletions.
7 changes: 5 additions & 2 deletions Makefile
Expand Up @@ -89,8 +89,11 @@ run: ## create dist, install and run

.PHONY: freeze-requirements
freeze-requirements: ## update (dev-)requirements.txt and setup.py based on pipenv's Pipfile.lock
pipenv lock -r > requirements.txt
pipenv lock -r --dev-only > dev-requirements.txt
pipenv requirements > requirements.txt
sed -i '' 's/==/~=/g' requirements.txt
pipenv requirements --dev-only > dev-requirements.txt
sed -i '' 's/==/~=/g' dev-requirements.txt
pipenv run pipenv-setup sync
sed -i '' 's/==/~=/g' setup.py

.DEFAULT_GOAL := help

0 comments on commit 5c56601

Please sign in to comment.