Skip to content

Commit 38f4306

Browse files
committed
build-macos-app.sh: Remove out or date requirements.txt
1 parent c4407fc commit 38f4306

File tree

2 files changed

+3
-27
lines changed

2 files changed

+3
-27
lines changed

scripts/macos/build-macos-app.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ Options:
1313
--pip-arg ARG
1414
Pip install arguments to populate the python environemnt in the
1515
application bundle. Can be used multiple times.
16-
If not supplied then by default the latest PyPi published Orange3 and
17-
requirements as recorded in scripts/macos/requirements.txt are
18-
installed.
16+
If not supplied then by default the latest PyPi published Orange3 is
17+
used.
1918
2019
-h|--help
2120
Print this help
@@ -73,7 +72,7 @@ APPDIR=${1:?"Target APPDIR argument is missing"}
7372
PYVER=${PYTHON_VERSION%.*} # Major.Minor
7473

7574
if [[ ${#PIP_REQ_ARGS[@]} -eq 0 ]]; then
76-
PIP_REQ_ARGS+=( Orange3 -r "${DIR}"/requirements.txt )
75+
PIP_REQ_ARGS+=( Orange3 'PyQt5~=5.12.0' 'PyQtWebEngine~=5.12.0' )
7776
fi
7877

7978
mkdir -p "${APPDIR}"/Contents/MacOS

scripts/macos/requirements.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)