Skip to content

Commit 2913970

Browse files
committed
[Build] fix full requirements build
1 parent 3131c2f commit 2913970

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_scripts/unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
python3 -m pip install -U pip setuptools wheel
33
python3 -m pip install -r requirements.txt
44
git clone -q $OCTOBOT_GH_REPO -b $OCTOBOT_DEFAULT_BRANCH
5-
python3 -m pip install --prefer-binary -r $OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $OCTOBOT_REPOSITORY_DIR/requirements.txt
5+
python3 -m pip install --prefer-binary -r $OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $OCTOBOT_REPOSITORY_DIR/requirements.txt -r $OCTOBOT_REPOSITORY_DIR/full_requirements.txt
66
python3 -m pip freeze
77
python3 scripts/python_file_lister.py bin/octobot_packages_files.txt $OCTOBOT_REPOSITORY_DIR
88
python3 scripts/insert_imports.py $OCTOBOT_REPOSITORY_DIR/octobot/cli.py

build_scripts/windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
python -m pip install -U pip setuptools wheel
22
python -m pip install -r requirements.txt
33
git clone -q $env:OCTOBOT_GH_REPO -b $env:OCTOBOT_DEFAULT_BRANCH
4-
python -m pip install --prefer-binary -r $env:OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $env:OCTOBOT_REPOSITORY_DIR/requirements.txt
4+
python -m pip install --prefer-binary -r $env:OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $env:OCTOBOT_REPOSITORY_DIR/requirements.txt -r $env:OCTOBOT_REPOSITORY_DIR/full_requirements.txt
55
python -m pip freeze
66
python scripts/python_file_lister.py bin/octobot_packages_files.txt $env:OCTOBOT_REPOSITORY_DIR
77
python scripts/insert_imports.py $env:OCTOBOT_REPOSITORY_DIR/octobot/cli.py

0 commit comments

Comments
 (0)