File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -67,16 +67,16 @@ runs:
6767 - name : Check for openai in requirements
6868 shell : bash
6969 run : |
70- if ! grep -q "openai" requirements/prod .txt; then
71- echo "openai not found in requirements/prod .txt" >&2
70+ if ! grep -q "openai" requirements/base .txt; then
71+ echo "openai not found in requirements/base .txt" >&2
7272 exit 1
7373 fi
7474
7575 - name : Cache Python dependencies
7676 uses : actions/cache@v3
7777 with :
7878 path : ~/.cache/pip
79- key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements/prod .txt') }}
79+ key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements/base .txt') }}
8080 restore-keys : |
8181 ${{ runner.os }}-pip
8282
9898 - name : Install dependencies
9999 shell : bash
100100 run : |
101- pip install -r requirements/prod .txt
101+ pip install -r requirements/base .txt
102102 pip install -r requirements/local.txt
103103 env :
104104 SITE_PACKAGES_PATH : ${{ env.SITE_PACKAGES_PATH }}
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ updates:
1212 - " lpm0073"
1313 reviewers :
1414 - " lpm0073"
15+ target-branch : " alpha"
1516 - package-ecosystem : " npm"
1617 directory : " /"
1718 labels :
@@ -24,6 +25,7 @@ updates:
2425 - " lpm0073"
2526 reviewers :
2627 - " lpm0073"
28+ target-branch : " alpha"
2729 - package-ecosystem : " github-actions"
2830 directory : " /"
2931 labels :
@@ -35,3 +37,4 @@ updates:
3537 - " lpm0073"
3638 reviewers :
3739 - " lpm0073"
40+ target-branch : " alpha"
Original file line number Diff line number Diff line change 6767 shell : bash
6868 run : |
6969 pip install -r ./requirements/local.txt
70- pip install -r ./requirements/prod .txt
70+ pip install -r ./requirements/base .txt
7171 env :
7272 SITE_PACKAGES_PATH : ${{ env.SITE_PACKAGES_PATH }}
7373
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ module.exports = {
2121 {
2222 assets : [
2323 "CHANGELOG.md" ,
24- "requirements/prod .txt" ,
24+ "requirements/base .txt" ,
2525 "app/__version__.py" ,
2626 "pyproject.toml" ,
2727 "Dockerfile" ,
You can’t perform that action at this time.
0 commit comments