-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
95 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
.PHONY: build | ||
|
||
## Install project's build dependencies. | ||
install-dist: | ||
@$(call print_help,$@:) | ||
@pip install .[ci,dev] | ||
@$(call print_pass,$@:) | ||
|
||
## Build & install openfisca-core for deployment and publishing. | ||
build: | ||
@## This allows us to be sure tests are run against the packaged version | ||
@## of openfisca-core, the same we put in the hands of users and reusers. | ||
@$(call print_help,$@:) | ||
@pip install --upgrade build | ||
@python -m build | ||
@pip uninstall --yes openfisca-core | ||
@find dist -name "*.whl" -exec pip install {}[dev] \; | ||
@find dist -name "*.whl" -exec pip install --no-deps {} \; | ||
@$(call print_pass,$@:) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters