Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build_scripts/unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
python3 -m pip install -U pip setuptools wheel
python3 -m pip install -r requirements.txt
git clone -q $OCTOBOT_GH_REPO -b $OCTOBOT_DEFAULT_BRANCH
python3 -m pip install --prefer-binary -r $OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $OCTOBOT_REPOSITORY_DIR/requirements.txt
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
python3 -m pip freeze
python3 scripts/python_file_lister.py bin/octobot_packages_files.txt $OCTOBOT_REPOSITORY_DIR
python3 scripts/insert_imports.py $OCTOBOT_REPOSITORY_DIR/octobot/cli.py
Expand Down
2 changes: 1 addition & 1 deletion build_scripts/windows.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
python -m pip install -U pip setuptools wheel
python -m pip install -r requirements.txt
git clone -q $env:OCTOBOT_GH_REPO -b $env:OCTOBOT_DEFAULT_BRANCH
python -m pip install --prefer-binary -r $env:OCTOBOT_REPOSITORY_DIR/dev_requirements.txt -r $env:OCTOBOT_REPOSITORY_DIR/requirements.txt
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
python -m pip freeze
python scripts/python_file_lister.py bin/octobot_packages_files.txt $env:OCTOBOT_REPOSITORY_DIR
python scripts/insert_imports.py $env:OCTOBOT_REPOSITORY_DIR/octobot/cli.py
Expand Down
Loading