Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb9 committed Jan 31, 2023
1 parent aa1591f commit 8b2886d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ all:
pex . -r requirements/common.txt -c main.py -o synology-photos-slideshow.pex

requirements:
pip-compile --resolver=backtracking --output-file=- requirements/common.in > requirements/common.txt
pip-compile --resolver=backtracking --output-file=- requirements/common.in > requirements/common.txt && \
pip-compile --resolver=backtracking --output-file=- requirements/dev.in > requirements/dev.txt
2 changes: 1 addition & 1 deletion dev_setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sets up development environment

set -x
python3.9 -m venv --clear --upgrade-deps venv
python3.9 -m venv --upgrade-deps venv
. venv/bin/activate
pip install -r requirements/dev.txt
2 changes: 1 addition & 1 deletion requirements/dev.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r common.in
pex
pip-tools
wheel
wheel
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Needed by pex

from distutils.core import setup

setup(
name="synology-photos-slideshow",
version="0.0.0",
Expand Down

0 comments on commit 8b2886d

Please sign in to comment.