Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
anlambert committed Jan 15, 2025
1 parent a241da7 commit f2000f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/macos-homebrew-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ jobs:
/Applications/Talipot*.app/Contents/MacOS/Talipot \
--check-application-starts \
--debug-plugins-load
/Users/runner/.Talipot-1.0/venv3.13/bin/python3 -m ensurepip --upgrade --default-pip
hdiutil detach /Volumes/Talipot*
- name: Upload Talipot bundle to GitHub Actions artifacts
uses: actions/upload-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos-macports-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ jobs:
/Applications/Talipot*.app/Contents/MacOS/Talipot \
--check-application-starts \
--debug-plugins-load
/Users/runner/.Talipot-1.0/venv3.13/bin/python3 -m ensurepip --upgrade --default-pip
hdiutil detach /Volumes/Talipot*
- name: Upload Talipot bundle to GitHub Actions artifacts
uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion library/talipot-python/src/PythonInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,11 @@ python_command = 'python3'
if platform.system() == 'Windows':
python_command = 'python.exe'
sys._base_executable = os.path.join('%1', python_command)
print('%2')
os.environ['LD_LIBRARY_PATH'] = '%2';
os.environ['DYLD_FALLBACK_LIBRARY_PATH'] = '%2';
os.environ['DYLD_FRAMEWORK_PATH'] = '%2';
venv.create('%3', with_pip=True)
venv.create('%3', with_pip=False)
)")
.arg(QApplication::applicationDirPath(), tlpStringToQString(tlp::TalipotLibDir),
talipotVenvDirectory));
Expand Down

0 comments on commit f2000f4

Please sign in to comment.