Skip to content

Commit

Permalink
Install devel requirements before running pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
bitphage committed May 10, 2020
1 parent d1744d9 commit 5ffbc2c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Expand Up @@ -18,6 +18,9 @@ clean-pyc:
pip:
python3 -m pip install -r requirements.txt

pip-dev:
python3 -m pip install -r requirements-dev.txt

pip-user:
python3 -m pip install --user -r requirements.txt

Expand Down Expand Up @@ -48,7 +51,7 @@ git:
check: pip
python3 setup.py check

package: build
package: build pip-dev
pyinstaller gui.spec
pyinstaller cli.spec

Expand Down

0 comments on commit 5ffbc2c

Please sign in to comment.