Skip to content

Commit

Permalink
🔧 Migrate dev dependencies export to new syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
TeoZosa committed Sep 1, 2022
1 parent deda90a commit 679c319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ install-project:
## Generate project requirements files from `pyproject.toml`
generate-requirements:
poetry export -f requirements.txt --without-hashes > requirements.txt # subset
poetry export --dev -f requirements.txt --without-hashes > requirements-dev.txt # superset w/o docs
poetry export --with docs --dev -f requirements.txt --without-hashes > requirements-all.txt # superset
poetry export --with dev -f requirements.txt --without-hashes > requirements-dev.txt # superset w/o docs
poetry export --with dev,docs -f requirements.txt --without-hashes > requirements-all.txt # superset

.PHONY: clean-requirements
## Clean generated project requirements files
Expand Down

0 comments on commit 679c319

Please sign in to comment.