Skip to content

Commit

Permalink
fix(pyinstaller): freeze tables version
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed May 22, 2024
1 parent 5d2693b commit 4d421c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ redis~=4.1.2
requests~=2.27.1
SQLAlchemy~=1.4.46
starlette~=0.17.1
tables
tables~=3.8.0
typing_extensions~=4.7.1
uvicorn[standard]~=0.15.0
xlsxwriter~=3.2.0
4 changes: 2 additions & 2 deletions scripts/package_antares_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ rm -rf ${DIST_DIR}
echo "INFO: Generating the Desktop version of the Web Application..."
if [[ "$OSTYPE" == "msys"* ]]; then
pushd ${PROJECT_DIR}
pyinstaller --collect-binaries=tables --distpath ${DIST_DIR} AntaresWebWin.spec
pyinstaller --distpath ${DIST_DIR} AntaresWebWin.spec
popd
else
pushd ${PROJECT_DIR}
pyinstaller --collect-binaries=tables --distpath ${DIST_DIR} AntaresWebLinux.spec
pyinstaller --distpath ${DIST_DIR} AntaresWebLinux.spec
popd
fi

Expand Down

0 comments on commit 4d421c8

Please sign in to comment.