Skip to content

Commit

Permalink
update pthon paths for windows - change python requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
ptresson committed Nov 7, 2024
1 parent ef60eaf commit 1e0d617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Check Path in windows
if: matrix.os == 'windows-latest'
run: |
python -c 'import os;import sys;conda_env_path = os.path.dirname(sys.executable);print(conda_env_path);os.environ['PATH'] += rf";{conda_env_path}\Library\bin";os.environ['PYTHONPATH'] += rf";{conda_env_path}\Library\python\qgis"'
python -c 'import os;import sys;conda_env_path = os.path.dirname(sys.executable);print(conda_env_path);os.environ['PATH'] += f"{conda_env_path}\Library\bin";os.environ['PYTHONPATH'] += f"{conda_env_path}\Library\python\qgis"'
- name: Tests
run: |
conda activate test
Expand Down

0 comments on commit 1e0d617

Please sign in to comment.