Skip to content

Commit

Permalink
fix(python): downgrade to 3.9 in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Nov 6, 2024
1 parent 32c9b1c commit 480ec47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
- name: Setup Node.js, NPM
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion electron-server/install_back.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ folder=electron-server/venv_back
python3 -m venv $folder
bin_folder=$folder/bin
source $bin_folder/activate
packages_path=$folder/lib/python3.10/site-packages
packages_path=$folder/lib/python3.9/site-packages
pip install -r electron-server/requirements_back.txt
pip install pyinstaller
pyinstaller --onefile --collect-data opengeodeweb_back $packages_path/vease_back/app.py --distpath ./electron-server/dist_back -n vease-back --clean
Expand Down
2 changes: 1 addition & 1 deletion electron-server/install_viewer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ folder=electron-server/venv_viewer
python3 -m venv $folder
bin_folder=$folder/bin
source $bin_folder/activate
packages_path=$folder/lib/python3.10/site-packages
packages_path=$folder/lib/python3.9/site-packages
pip install -r electron-server/requirements_viewer.txt
pip install pyinstaller
pyinstaller --onefile --collect-data opengeodeweb_viewer --collect-all vtkmodules $packages_path/vease_viewer/app.py --distpath ./electron-server/dist_viewer -n vease-viewer --clean
Expand Down

0 comments on commit 480ec47

Please sign in to comment.