Skip to content

Commit 618dc1f

Browse files
committed
refactor: rename prod.txt to base.txt
1 parent 729af36 commit 618dc1f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/actions/tests/python/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
@@ -98,7 +98,7 @@ runs:
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 }}

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

.github/workflows/precommitVersionBumps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
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

release.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)