marcelotduarte/cx_Freeze

Cx Freeze using information from QLibraryInfo that is not initialized yet

GabrielMarcilio opened this issue · 6 comments

I am facing an issue when freezing an application that has a QWebEngineView in win64 using conda packages:
cx_freeze: 6.15.12
python: 3.10.4
pyqt: 5.12.3
qt: 5.12.9

I believe that the issue is related with the QLibraryInfo, according with the documentation The library info is loaded when a QCoreApplication is created. In my case specifically when requesting the QLibraryInfo.LibraryExecutablesPath before creating the QCoreapplication i get:

_'C:/bld/qt_1646603227296/_h_env/Library/bin'_

I believe that this address reefers to the virtual machine where the qt conda package was created, however after i create a QCoreApplication the QLibraryInfo.LibraryExecutablesPath is correctly loaded to a valid path in my machine.

This looks to be an issue in cx_freeze, because when i freeze my application in method _qt_libraryinfo_paths inside module _qt_hooks (where it will determine the source and target to copy) is using the QLibraryInfo without creating a QCoreApplication, this results in associations between source and target that do not exist in my machine. The BinariesPath for example maps

_C:/bld/qt_1646603227296/_h_env/Library/bin_ (the not initialized version that do not exist in my machine) to _lib/PyQt5/Qt5/bin_ 

This end up causing the method load_qt_qtwebenginecore to fail because it looks for QtWebEngineProcess inside C:\bld\qt_1646603227296_h_env\Library\bin, the path does not exists so nothing is copied

All that said as a temporary workaround i created a QCoreApplication before calling the freeze script. With the QCoreApplication created the QlibraryInfo is correctly loaded and the method _qt_libraryinfo_paths created a valid map for BinariesPath

<conda_env_path>/Library/bin (a valid address where QWebEngineProcess is located) to: lib/PyQt5/Qt5/bin

After this fix i am having problems with the target address to where the binaries are being copied. In the created binary, when the QCoreApplication is created, the QLibraryInfo.LibraryExecutablesPath points to:

_<freeze_path>/lib/PyQt5/bin_ but the binaries where copied to _<freeze_path>\lib\PyQt5\Qt5\bin_ (note the extra Qt5 before \bin)

I was not able to override the QLibraryInfo.LibraryExecutablesPath with a qt.conf file, not sure why (it can be that this value is patched by cx_freeze?)

This extra "Qt5" in the path is added in the same method discussed before (_qt_libraryinfo_paths) and it looks to be a fix specifically for conda packages by the comment in the code:

    if name == "PyQt5" and prefix_path.name != "Qt5":
        # conda pyqt
         target_base = target_base / "Qt5"

However at least in my case this suffix to the base path is causing problems with the conda pyqt package.

To sum it up, is there an issue with CxFreeze using QLibraryInfo that are not initialized yet? or is this a misconfiguration / wrong use by my part?
The "Qt5" suffix that is added the path to copy the binaries is right? it looks my that the frozen version of my app (that use conda packages) do not expect it.

Thanks for all the work done in cxfreeze, this is an amazing tool.

The last test I did, approximately 2 months ago, with the pyqt5-simplebrowser sample, ran perfectly, using the following versions:

  cx_freeze                 6.16.0.dev12    py310hf4a77e7_0    https://marcelotduarte.github.io/packages/conda
  ...
  pyqt                      5.15.9          py310h1fd54f2_5    conda-forge
  pyqt5-sip                 12.12.2         py310h00ffb61_5    conda-forge
  pyqtwebengine             5.15.9          py310he49db7d_5    conda-forge
  python                    3.10.13         h4de0772_0_cpython    conda-forge
  python_abi                3.10                    4_cp310    conda-forge
  qt-main                   5.15.8              h9e85ed6_18    conda-forge
  qt-webengine              5.15.8               h4bf5c4e_4    conda-forge
Full log

2023-12-17T22:18:21.4733582Z Requested labels: windows-latest 2023-12-17T22:18:21.4733997Z Job defined at: marcelotduarte/freeze-test/.github/workflows/test-3-conda-base.yml@refs/heads/main 2023-12-17T22:18:21.4734241Z Reusable workflow chain: 2023-12-17T22:18:21.4734382Z marcelotduarte/freeze-test/.github/workflows/test-3-conda-windows.yml@refs/heads/main (004ebc79d4bb2866bd4fe4330516dd784a218f43) 2023-12-17T22:18:21.4734520Z -> marcelotduarte/freeze-test/.github/workflows/test-3-conda-base.yml@refs/heads/main (004ebc79d4bb2866bd4fe4330516dd784a218f43) 2023-12-17T22:18:21.4734665Z Waiting for a runner to pick up this job... 2023-12-17T22:46:52.5973404Z Job is waiting for a hosted runner to come online. 2023-12-17T22:46:56.8152449Z Job is about to start running on the hosted runner: GitHub Actions 6 (hosted) 2023-12-17T22:47:01.2946023Z Current runner version: '2.311.0' 2023-12-17T22:47:01.2969904Z ##[group]Operating System 2023-12-17T22:47:01.2970446Z Microsoft Windows Server 2022 2023-12-17T22:47:01.2970880Z 10.0.20348 2023-12-17T22:47:01.2971174Z Datacenter 2023-12-17T22:47:01.2971470Z ##[endgroup] 2023-12-17T22:47:01.2971811Z ##[group]Runner Image 2023-12-17T22:47:01.2972177Z Image: windows-2022 2023-12-17T22:47:01.2972511Z Version: 20231211.1.0 2023-12-17T22:47:01.2973429Z Included Software: https://github.com/actions/runner-images/blob/win22/20231211.1/images/windows/Windows2022-Readme.md 2023-12-17T22:47:01.2974726Z Image Release: https://github.com/actions/runner-images/releases/tag/win22%2F20231211.1 2023-12-17T22:47:01.2975566Z ##[endgroup] 2023-12-17T22:47:01.2975945Z ##[group]Runner Image Provisioner 2023-12-17T22:47:01.2976370Z 2.0.321.1 2023-12-17T22:47:01.2976634Z ##[endgroup] 2023-12-17T22:47:01.2978642Z ##[group]GITHUB_TOKEN Permissions 2023-12-17T22:47:01.2980309Z Actions: write 2023-12-17T22:47:01.2980738Z Checks: write 2023-12-17T22:47:01.2981048Z Contents: write 2023-12-17T22:47:01.2981383Z Deployments: write 2023-12-17T22:47:01.2981730Z Discussions: write 2023-12-17T22:47:01.2982064Z Issues: write 2023-12-17T22:47:01.2982361Z Metadata: read 2023-12-17T22:47:01.2982685Z Packages: write 2023-12-17T22:47:01.2983030Z Pages: write 2023-12-17T22:47:01.2983334Z PullRequests: write 2023-12-17T22:47:01.2983702Z RepositoryProjects: write 2023-12-17T22:47:01.2984096Z SecurityEvents: write 2023-12-17T22:47:01.2984434Z Statuses: write 2023-12-17T22:47:01.2984755Z ##[endgroup] 2023-12-17T22:47:01.2987479Z Secret source: Actions 2023-12-17T22:47:01.2988018Z Prepare workflow directory 2023-12-17T22:47:01.4077232Z Prepare all required actions 2023-12-17T22:47:01.4236008Z Getting action download info 2023-12-17T22:47:01.6981407Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11) 2023-12-17T22:47:01.8410269Z Download action repository 'conda-incubator/setup-miniconda@v3' (SHA:11b562958363ec5770fef326fe8ef0366f8cbf8a) 2023-12-17T22:47:02.4227847Z Download action repository 'actions/upload-artifact@v4' (SHA:c7d193f32edcb7bfad88892161225aeda64e9392) 2023-12-17T22:47:03.1144126Z Uses: marcelotduarte/freeze-test/.github/workflows/test-3-conda-base.yml@refs/heads/main (004ebc79d4bb2866bd4fe4330516dd784a218f43) 2023-12-17T22:47:03.1146029Z ##[group] Inputs 2023-12-17T22:47:03.1146305Z branch: develop 2023-12-17T22:47:03.1146525Z deps: p 2023-12-17T22:47:03.1146731Z python-version: 3.8-3.11 2023-12-17T22:47:03.1146979Z bdist: 2023-12-17T22:47:03.1147174Z os: windows-latest 2023-12-17T22:47:03.1147402Z ##[endgroup] 2023-12-17T22:47:03.1148076Z Complete job name: Test-conda-windows-develop-- / pyqt5-simplebrowser-windows-latest-3.10 2023-12-17T22:47:03.2200180Z ##[group]Run actions/checkout@v4 2023-12-17T22:47:03.2200586Z with: 2023-12-17T22:47:03.2200791Z ref: develop 2023-12-17T22:47:03.2201046Z repository: marcelotduarte/cx_Freeze 2023-12-17T22:47:03.2201531Z token: *** 2023-12-17T22:47:03.2201771Z ssh-strict: true 2023-12-17T22:47:03.2202012Z persist-credentials: true 2023-12-17T22:47:03.2202278Z clean: true 2023-12-17T22:47:03.2202514Z sparse-checkout-cone-mode: true 2023-12-17T22:47:03.2202794Z fetch-depth: 1 2023-12-17T22:47:03.2203005Z fetch-tags: false 2023-12-17T22:47:03.2203247Z show-progress: true 2023-12-17T22:47:03.2203471Z lfs: false 2023-12-17T22:47:03.2203674Z submodules: false 2023-12-17T22:47:03.2203907Z set-safe-directory: true 2023-12-17T22:47:03.2204143Z env: 2023-12-17T22:47:03.2204340Z KEY_BASE: windows-latest-3.10 2023-12-17T22:47:03.2204638Z PIP_DISABLE_PIP_VERSION_CHECK: 1 2023-12-17T22:47:03.2204941Z ##[endgroup] 2023-12-17T22:47:03.5405689Z Syncing repository: marcelotduarte/cx_Freeze 2023-12-17T22:47:03.5407367Z ##[group]Getting Git version info 2023-12-17T22:47:03.5408005Z Working directory is 'D:\a\freeze-test\freeze-test' 2023-12-17T22:47:03.6792839Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-12-17T22:47:03.7212726Z git version 2.43.0.windows.1 2023-12-17T22:47:03.7435858Z ##[endgroup] 2023-12-17T22:47:03.7484019Z Temporarily overriding HOME='D:\a\_temp\3bb373df-1ed9-45a1-9ab5-4846dd1cfcc6' before making global git config changes 2023-12-17T22:47:03.7485267Z Adding repository directory to the temporary git global config as a safe directory 2023-12-17T22:47:03.7493458Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\freeze-test\freeze-test 2023-12-17T22:47:03.8007460Z Deleting the contents of 'D:\a\freeze-test\freeze-test' 2023-12-17T22:47:03.8012786Z ##[group]Initializing the repository 2023-12-17T22:47:03.8020552Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\freeze-test\freeze-test 2023-12-17T22:47:03.8577877Z Initialized empty Git repository in D:/a/freeze-test/freeze-test/.git/ 2023-12-17T22:47:03.8606539Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/marcelotduarte/cx_Freeze 2023-12-17T22:47:03.8967050Z ##[endgroup] 2023-12-17T22:47:03.8967649Z ##[group]Disabling automatic garbage collection 2023-12-17T22:47:03.8974180Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0 2023-12-17T22:47:03.9201036Z ##[endgroup] 2023-12-17T22:47:03.9201960Z ##[group]Setting up auth 2023-12-17T22:47:03.9211980Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core\.sshCommand 2023-12-17T22:47:03.9436929Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-12-17T22:47:05.0542444Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-12-17T22:47:05.0760019Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-12-17T22:47:05.4629503Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2023-12-17T22:47:05.4849060Z ##[endgroup] 2023-12-17T22:47:05.4849963Z ##[group]Fetching the repository 2023-12-17T22:47:05.4862152Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/develop*:refs/remotes/origin/develop* +refs/tags/develop*:refs/tags/develop* 2023-12-17T22:47:07.1725553Z From https://github.com/marcelotduarte/cx_Freeze 2023-12-17T22:47:07.1726791Z * [new branch] develop -> origin/develop 2023-12-17T22:47:07.1730463Z * [new branch] develop615x -> origin/develop615x 2023-12-17T22:47:07.1849438Z ##[endgroup] 2023-12-17T22:47:07.1849959Z ##[group]Determining the checkout info 2023-12-17T22:47:07.1863200Z [command]"C:\Program Files\Git\bin\git.exe" branch --list --remote origin/develop 2023-12-17T22:47:07.2154937Z origin/develop 2023-12-17T22:47:07.2177646Z ##[endgroup] 2023-12-17T22:47:07.2178504Z ##[group]Checking out the ref 2023-12-17T22:47:07.2186285Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force -B develop refs/remotes/origin/develop 2023-12-17T22:47:07.3661284Z branch 'develop' set up to track 'origin/develop'. 2023-12-17T22:47:07.3688716Z Switched to a new branch 'develop' 2023-12-17T22:47:07.3689955Z ##[endgroup] 2023-12-17T22:47:07.3974035Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format='%H' 2023-12-17T22:47:07.4170188Z '37c718d3fd25dc135f15cae86b1c4631cc89a77c' 2023-12-17T22:47:07.4696772Z ##[group]Run conda-incubator/setup-miniconda@v3 2023-12-17T22:47:07.4697163Z with: 2023-12-17T22:47:07.4697405Z activate-environment: windows-latest-3.10 2023-12-17T22:47:07.4697744Z python-version: 3.10 2023-12-17T22:47:07.4697990Z architecture: x64 2023-12-17T22:47:07.4698851Z channels: conda-forge 2023-12-17T22:47:07.4699105Z auto-activate-base: true 2023-12-17T22:47:07.4699359Z auto-update-conda: false 2023-12-17T22:47:07.4699608Z remove-profiles: true 2023-12-17T22:47:07.4699843Z conda-solver: libmamba 2023-12-17T22:47:07.4700104Z clean-patched-environment-file: true 2023-12-17T22:47:07.4700403Z run-post: true 2023-12-17T22:47:07.4700593Z env: 2023-12-17T22:47:07.4700771Z KEY_BASE: windows-latest-3.10 2023-12-17T22:47:07.4701060Z PIP_DISABLE_PIP_VERSION_CHECK: 1 2023-12-17T22:47:07.4701334Z ##[endgroup] 2023-12-17T22:47:07.6575782Z ##[group]Gathering Inputs... 2023-12-17T22:47:07.6607398Z ##[endgroup] 2023-12-17T22:47:07.6610653Z ##[group]Creating bootstrap condarc file in C:\Users\runneradmin\.condarc... 2023-12-17T22:47:07.6634595Z ##[endgroup] 2023-12-17T22:47:07.6635030Z ##[group]Ensuring installer... 2023-12-17T22:47:07.6636842Z Can we use bundled Miniconda? 2023-12-17T22:47:07.6638895Z ... will use bundled Miniconda. 2023-12-17T22:47:07.6640402Z ##[endgroup] 2023-12-17T22:47:07.6642352Z ##[group]Setup environment variables... 2023-12-17T22:47:07.6644133Z Add "C:\Miniconda\condabin" to PATH 2023-12-17T22:47:07.6648236Z ##[endgroup] 2023-12-17T22:47:07.6649822Z ##[group]Parsing environment... 2023-12-17T22:47:07.6652155Z ##[endgroup] 2023-12-17T22:47:07.6652580Z ##[group]Configuring conda package cache... 2023-12-17T22:47:07.6801696Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --add pkgs_dirs C:\Users\runneradmin\conda_pkgs_dir" 2023-12-17T22:47:14.9411249Z ##[endgroup] 2023-12-17T22:47:14.9412074Z ##[group]Applying initial configuration... 2023-12-17T22:47:14.9412998Z Adding channel 'conda-forge' 2023-12-17T22:47:14.9418544Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --add channels conda-forge" 2023-12-17T22:47:15.4348620Z auto_activate_base: true 2023-12-17T22:47:15.4356397Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --set auto_activate_base true" 2023-12-17T22:47:15.9360785Z auto_update_conda: false 2023-12-17T22:47:15.9368184Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --set auto_update_conda false" 2023-12-17T22:47:16.4461804Z solver: libmamba 2023-12-17T22:47:16.4469345Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --set solver libmamba" 2023-12-17T22:47:16.9756976Z always_yes: true 2023-12-17T22:47:16.9764466Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --set always_yes true" 2023-12-17T22:47:17.4729547Z changeps1: false 2023-12-17T22:47:17.4737414Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --set changeps1 false" 2023-12-17T22:47:17.9677846Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --show-sources" 2023-12-17T22:47:18.4163166Z ==> C:\Users\runneradmin\.condarc <== 2023-12-17T22:47:18.4164019Z auto_update_conda: False 2023-12-17T22:47:18.4164587Z auto_activate_base: True 2023-12-17T22:47:18.4165152Z notify_outdated_conda: False 2023-12-17T22:47:18.4168763Z changeps1: False 2023-12-17T22:47:18.4169126Z pkgs_dirs: 2023-12-17T22:47:18.4169721Z - C:\Users\runneradmin\conda_pkgs_dir 2023-12-17T22:47:18.4170185Z channels: 2023-12-17T22:47:18.4170522Z - conda-forge 2023-12-17T22:47:18.4170867Z - defaults 2023-12-17T22:47:18.4171181Z always_yes: True 2023-12-17T22:47:18.4171448Z solver: libmamba 2023-12-17T22:47:18.4171585Z 2023-12-17T22:47:18.4596364Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat config --show" 2023-12-17T22:47:18.9207544Z add_anaconda_token: True 2023-12-17T22:47:18.9208112Z add_pip_as_python_dependency: True 2023-12-17T22:47:18.9208592Z aggressive_update_packages: 2023-12-17T22:47:18.9209236Z - ca-certificates 2023-12-17T22:47:18.9209683Z - certifi 2023-12-17T22:47:18.9210004Z - openssl 2023-12-17T22:47:18.9210530Z allow_conda_downgrades: False 2023-12-17T22:47:18.9210957Z allow_cycles: True 2023-12-17T22:47:18.9211307Z allow_non_channel_urls: False 2023-12-17T22:47:18.9211715Z allow_softlinks: False 2023-12-17T22:47:18.9212083Z allowlist_channels: [] 2023-12-17T22:47:18.9212422Z always_copy: False 2023-12-17T22:47:18.9212749Z always_softlink: False 2023-12-17T22:47:18.9213091Z always_yes: True 2023-12-17T22:47:18.9213411Z anaconda_upload: None 2023-12-17T22:47:18.9213774Z auto_activate_base: True 2023-12-17T22:47:18.9214129Z auto_stack: 0 2023-12-17T22:47:18.9214436Z auto_update_conda: False 2023-12-17T22:47:18.9214788Z bld_path: 2023-12-17T22:47:18.9215080Z changeps1: False 2023-12-17T22:47:18.9215477Z channel_alias: https://conda.anaconda.org 2023-12-17T22:47:18.9216008Z channel_priority: flexible 2023-12-17T22:47:18.9216389Z channel_settings: [] 2023-12-17T22:47:18.9216697Z channels: 2023-12-17T22:47:18.9217039Z - conda-forge 2023-12-17T22:47:18.9217375Z - defaults 2023-12-17T22:47:18.9217672Z client_ssl_cert: None 2023-12-17T22:47:18.9218012Z client_ssl_cert_key: None 2023-12-17T22:47:18.9218379Z clobber: False 2023-12-17T22:47:18.9218674Z conda_build: {} 2023-12-17T22:47:18.9218990Z create_default_packages: [] 2023-12-17T22:47:18.9219469Z croot: C:\Miniconda\conda-bld 2023-12-17T22:47:18.9219846Z custom_channels: 2023-12-17T22:47:18.9220217Z pkgs/main: https://repo.anaconda.com 2023-12-17T22:47:18.9220714Z pkgs/r: https://repo.anaconda.com 2023-12-17T22:47:18.9221199Z pkgs/msys2: https://repo.anaconda.com 2023-12-17T22:47:18.9221721Z pkgs/pro: https://repo.anaconda.com 2023-12-17T22:47:18.9222187Z custom_multichannels: 2023-12-17T22:47:18.9222568Z defaults: 2023-12-17T22:47:18.9223014Z - https://repo.anaconda.com/pkgs/main 2023-12-17T22:47:18.9223603Z - https://repo.anaconda.com/pkgs/r 2023-12-17T22:47:18.9224387Z - https://repo.anaconda.com/pkgs/msys2 2023-12-17T22:47:18.9224879Z local: 2023-12-17T22:47:18.9225157Z debug: False 2023-12-17T22:47:18.9225449Z default_channels: 2023-12-17T22:47:18.9225879Z - https://repo.anaconda.com/pkgs/main 2023-12-17T22:47:18.9226461Z - https://repo.anaconda.com/pkgs/r 2023-12-17T22:47:18.9227031Z - https://repo.anaconda.com/pkgs/msys2 2023-12-17T22:47:18.9227501Z default_python: 3.11 2023-12-17T22:47:18.9227868Z default_threads: None 2023-12-17T22:47:18.9228197Z deps_modifier: not_set 2023-12-17T22:47:18.9228528Z dev: False 2023-12-17T22:47:18.9228812Z disallowed_packages: [] 2023-12-17T22:47:18.9229165Z download_only: False 2023-12-17T22:47:18.9229488Z dry_run: False 2023-12-17T22:47:18.9229806Z enable_private_envs: False 2023-12-17T22:47:18.9230179Z env_prompt: ({default_env}) 2023-12-17T22:47:18.9230557Z envs_dirs: 2023-12-17T22:47:18.9230898Z - C:\Miniconda\envs 2023-12-17T22:47:18.9231331Z - C:\Users\runneradmin\.conda\envs 2023-12-17T22:47:18.9231949Z - C:\Users\runneradmin\AppData\Local\conda\conda\envs 2023-12-17T22:47:18.9232721Z error_upload_url: https://conda.io/conda-post/unexpected-error 2023-12-17T22:47:18.9233327Z execute_threads: 1 2023-12-17T22:47:18.9233650Z experimental: [] 2023-12-17T22:47:18.9233976Z extra_safety_checks: False 2023-12-17T22:47:18.9234360Z fetch_threads: 5 2023-12-17T22:47:18.9234660Z force: False 2023-12-17T22:47:18.9234948Z force_32bit: False 2023-12-17T22:47:18.9235263Z force_reinstall: False 2023-12-17T22:47:18.9235609Z force_remove: False 2023-12-17T22:47:18.9235930Z ignore_pinned: False 2023-12-17T22:47:18.9236238Z json: False 2023-12-17T22:47:18.9236525Z local_repodata_ttl: 1 2023-12-17T22:47:18.9236884Z migrated_channel_aliases: [] 2023-12-17T22:47:18.9237262Z migrated_custom_channels: {} 2023-12-17T22:47:18.9238443Z no_lock: False 2023-12-17T22:47:18.9238793Z no_plugins: False 2023-12-17T22:47:18.9239110Z non_admin_enabled: True 2023-12-17T22:47:18.9239474Z notify_outdated_conda: False 2023-12-17T22:47:18.9239861Z number_channel_notices: 5 2023-12-17T22:47:18.9240208Z offline: False 2023-12-17T22:47:18.9240534Z override_channels_enabled: True 2023-12-17T22:47:18.9241095Z path_conflict: clobber 2023-12-17T22:47:18.9241428Z pinned_packages: [] 2023-12-17T22:47:18.9241767Z pip_interop_enabled: False 2023-12-17T22:47:18.9242128Z pkgs_dirs: 2023-12-17T22:47:18.9242535Z - C:\Users\runneradmin\conda_pkgs_dir 2023-12-17T22:47:18.9242988Z proxy_servers: {} 2023-12-17T22:47:18.9243292Z quiet: False 2023-12-17T22:47:18.9243590Z register_envs: True 2023-12-17T22:47:18.9243939Z remote_backoff_factor: 1 2023-12-17T22:47:18.9244333Z remote_connect_timeout_secs: 9.15 2023-12-17T22:47:18.9244738Z remote_max_retries: 3 2023-12-17T22:47:18.9245082Z remote_read_timeout_secs: 60.0 2023-12-17T22:47:18.9245457Z repodata_fns: 2023-12-17T22:47:18.9245821Z - current_repodata.json 2023-12-17T22:47:18.9246223Z - repodata.json 2023-12-17T22:47:18.9246537Z repodata_threads: None 2023-12-17T22:47:18.9246882Z report_errors: None 2023-12-17T22:47:18.9247218Z restore_free_channel: False 2023-12-17T22:47:18.9247610Z rollback_enabled: True 2023-12-17T22:47:18.9247988Z root_prefix: C:\Miniconda 2023-12-17T22:47:18.9248378Z safety_checks: warn 2023-12-17T22:47:18.9248716Z sat_solver: pycosat 2023-12-17T22:47:18.9249067Z separate_format_cache: False 2023-12-17T22:47:18.9249453Z shortcuts: True 2023-12-17T22:47:18.9249767Z show_channel_urls: None 2023-12-17T22:47:18.9250139Z signing_metadata_url_base: None 2023-12-17T22:47:18.9250532Z solver: libmamba 2023-12-17T22:47:18.9250857Z solver_ignore_timestamps: False 2023-12-17T22:47:18.9251256Z ssl_verify: True 2023-12-17T22:47:18.9251622Z subdir: win-64 2023-12-17T22:47:18.9251897Z subdirs: 2023-12-17T22:47:18.9252203Z - win-64 2023-12-17T22:47:18.9252497Z - noarch 2023-12-17T22:47:18.9252783Z target_prefix_override: 2023-12-17T22:47:18.9253136Z trace: False 2023-12-17T22:47:18.9253428Z track_features: [] 2023-12-17T22:47:18.9253753Z unsatisfiable_hints: True 2023-12-17T22:47:18.9254145Z unsatisfiable_hints_check_depth: 2 2023-12-17T22:47:18.9254587Z update_modifier: update_specs 2023-12-17T22:47:18.9254982Z use_index_cache: False 2023-12-17T22:47:18.9255310Z use_local: False 2023-12-17T22:47:18.9255622Z use_only_tar_bz2: False 2023-12-17T22:47:18.9255954Z verbosity: 0 2023-12-17T22:47:18.9256242Z verify_threads: 1 2023-12-17T22:47:18.9641184Z ##[endgroup] 2023-12-17T22:47:18.9641665Z ##[group]Initializing conda shell integration... 2023-12-17T22:47:18.9646036Z Fixing condabin/ ownership 2023-12-17T22:47:19.0339468Z [command]C:\Windows\system32\takeown.exe /f C:\Miniconda\condabin\ /r /d y 2023-12-17T22:47:19.0521366Z 2023-12-17T22:47:19.0522433Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0567638Z 2023-12-17T22:47:19.0568564Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\activate.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0572557Z 2023-12-17T22:47:19.0573294Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\conda.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0616167Z 2023-12-17T22:47:19.0617396Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\conda_auto_activate.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0621991Z 2023-12-17T22:47:19.0622633Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\conda_hook.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0627695Z 2023-12-17T22:47:19.0628314Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\deactivate.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0632826Z 2023-12-17T22:47:19.0633701Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\rename_tmp.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0689063Z 2023-12-17T22:47:19.0689945Z SUCCESS: The file (or folder): "C:\Miniconda\condabin\_conda_activate.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.0701531Z Fixing Scripts/ ownership 2023-12-17T22:47:19.1415610Z [command]C:\Windows\system32\takeown.exe /f C:\Miniconda\Scripts\ /r /d y 2023-12-17T22:47:19.1492184Z 2023-12-17T22:47:19.1493492Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1500323Z 2023-12-17T22:47:19.1501433Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\2to3-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1507047Z 2023-12-17T22:47:19.1508084Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\2to3.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1514285Z 2023-12-17T22:47:19.1515545Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\activate" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1519686Z 2023-12-17T22:47:19.1520336Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\activate.bat" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1526894Z 2023-12-17T22:47:19.1527618Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\archspec-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1568093Z 2023-12-17T22:47:19.1568754Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\archspec.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1575370Z 2023-12-17T22:47:19.1576130Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda-content-trust-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1611203Z 2023-12-17T22:47:19.1611873Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda-content-trust.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1615972Z 2023-12-17T22:47:19.1617139Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda-env-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1623245Z 2023-12-17T22:47:19.1623861Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda-env.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1628242Z 2023-12-17T22:47:19.1628869Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1632526Z 2023-12-17T22:47:19.1633254Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\conda.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1672214Z 2023-12-17T22:47:19.1673538Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\cph-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1678292Z 2023-12-17T22:47:19.1678963Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\cph.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1682897Z 2023-12-17T22:47:19.1683720Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\deactivate" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1689764Z 2023-12-17T22:47:19.1690898Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\idle-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1696617Z 2023-12-17T22:47:19.1697325Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\idle.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1701550Z 2023-12-17T22:47:19.1702128Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\jsondiff" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1706917Z 2023-12-17T22:47:19.1707497Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\jsonpatch" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1711925Z 2023-12-17T22:47:19.1712675Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\jsonpointer" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1753406Z 2023-12-17T22:47:19.1755261Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\menuinst-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1792287Z 2023-12-17T22:47:19.1792937Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\menuinst.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1797384Z 2023-12-17T22:47:19.1799141Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\normalizer-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1803276Z 2023-12-17T22:47:19.1804020Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\normalizer.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1844186Z 2023-12-17T22:47:19.1844899Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pip-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1849751Z 2023-12-17T22:47:19.1850639Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pip.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1886395Z 2023-12-17T22:47:19.1887183Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pip3-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1924340Z 2023-12-17T22:47:19.1926022Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pip3.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1930755Z 2023-12-17T22:47:19.1932563Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pydoc-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1936920Z 2023-12-17T22:47:19.1937563Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\pydoc.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1942035Z 2023-12-17T22:47:19.1942793Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\tqdm-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.1982468Z 2023-12-17T22:47:19.1983216Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\tqdm.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2026758Z 2023-12-17T22:47:19.2028129Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\wheel-script.py" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2034711Z 2023-12-17T22:47:19.2035628Z SUCCESS: The file (or folder): "C:\Miniconda\Scripts\wheel.exe" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2051231Z Fixing shell/ ownership 2023-12-17T22:47:19.2658934Z [command]C:\Windows\system32\takeown.exe /f C:\Miniconda\shell\ /r /d y 2023-12-17T22:47:19.2734558Z 2023-12-17T22:47:19.2735807Z SUCCESS: The file (or folder): "C:\Miniconda\shell\" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2745753Z 2023-12-17T22:47:19.2746669Z SUCCESS: The file (or folder): "C:\Miniconda\shell\condabin" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2754444Z 2023-12-17T22:47:19.2755672Z SUCCESS: The file (or folder): "C:\Miniconda\shell\condabin\conda-hook.ps1" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2761474Z 2023-12-17T22:47:19.2762414Z SUCCESS: The file (or folder): "C:\Miniconda\shell\condabin\Conda.psm1" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.2776723Z Fixing etc/profile.d/ ownership 2023-12-17T22:47:19.3364058Z [command]C:\Windows\system32\takeown.exe /f C:\Miniconda\etc\profile.d\ /r /d y 2023-12-17T22:47:19.3439696Z 2023-12-17T22:47:19.3440694Z SUCCESS: The file (or folder): "C:\Miniconda\etc\profile.d\" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.3446551Z 2023-12-17T22:47:19.3447745Z SUCCESS: The file (or folder): "C:\Miniconda\etc\profile.d\conda.csh" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.3453351Z 2023-12-17T22:47:19.3454203Z SUCCESS: The file (or folder): "C:\Miniconda\etc\profile.d\conda.sh" now owned by user "fv-az1388-530\runneradmin". 2023-12-17T22:47:19.3517909Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat init --all" 2023-12-17T22:47:20.4834612Z no change C:\Miniconda\Scripts\conda.exe 2023-12-17T22:47:20.4835728Z no change C:\Miniconda\Scripts\conda-env.exe 2023-12-17T22:47:20.4836446Z no change C:\Miniconda\Scripts\conda-script.py 2023-12-17T22:47:20.4837189Z no change C:\Miniconda\Scripts\conda-env-script.py 2023-12-17T22:47:20.4838229Z no change C:\Miniconda\condabin\conda.bat 2023-12-17T22:47:20.4838843Z no change C:\Miniconda\Library\bin\conda.bat 2023-12-17T22:47:20.4839466Z no change C:\Miniconda\condabin\_conda_activate.bat 2023-12-17T22:47:20.4840109Z no change C:\Miniconda\condabin\rename_tmp.bat 2023-12-17T22:47:20.4840794Z no change C:\Miniconda\condabin\conda_auto_activate.bat 2023-12-17T22:47:20.4841475Z no change C:\Miniconda\condabin\conda_hook.bat 2023-12-17T22:47:20.4842066Z no change C:\Miniconda\Scripts\activate.bat 2023-12-17T22:47:20.4842646Z no change C:\Miniconda\condabin\activate.bat 2023-12-17T22:47:20.4843247Z no change C:\Miniconda\condabin\deactivate.bat 2023-12-17T22:47:20.4843821Z modified C:\Miniconda\Scripts\activate 2023-12-17T22:47:20.4844381Z modified C:\Miniconda\Scripts\deactivate 2023-12-17T22:47:20.4844968Z modified C:\Miniconda\etc\profile.d\conda.sh 2023-12-17T22:47:20.4845601Z modified C:\Miniconda\etc\fish\conf.d\conda.fish 2023-12-17T22:47:20.4846240Z no change C:\Miniconda\shell\condabin\Conda.psm1 2023-12-17T22:47:20.4847019Z modified C:\Miniconda\shell\condabin\conda-hook.ps1 2023-12-17T22:47:20.4847835Z no change C:\Miniconda\Lib\site-packages\xontrib\conda.xsh 2023-12-17T22:47:20.4848506Z modified C:\Miniconda\etc\profile.d\conda.csh 2023-12-17T22:47:20.4849127Z modified C:\Users\runneradmin\.bash_profile 2023-12-17T22:47:20.4849690Z modified C:\Users\runneradmin\.zshrc 2023-12-17T22:47:20.4850295Z modified C:\Users\runneradmin\.config\fish\config.fish 2023-12-17T22:47:20.4850931Z modified C:\Users\runneradmin\.xonshrc 2023-12-17T22:47:20.4851473Z modified C:\Users\runneradmin\.tcshrc 2023-12-17T22:47:20.4852258Z modified C:\Users\runneradmin\Documents\WindowsPowerShell\profile.ps1 2023-12-17T22:47:20.4853172Z modified C:\Users\runneradmin\Documents\PowerShell\profile.ps1 2023-12-17T22:47:20.4854055Z modified HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun 2023-12-17T22:47:20.4854629Z 2023-12-17T22:47:20.4855131Z ==> For changes to take effect, close and re-open your current shell. <== 2023-12-17T22:47:20.4855684Z 2023-12-17T22:47:20.5280604Z Append to "C:\Users\runneradmin/.bash_profile": 2023-12-17T22:47:20.5281170Z 2023-12-17T22:47:20.5281783Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5282229Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5282605Z set -eo pipefail 2023-12-17T22:47:20.5282876Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5283274Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5283749Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5284042Z 2023-12-17T22:47:20.5284497Z Append to "C:\Users\runneradmin/.zshrc": 2023-12-17T22:47:20.5284952Z 2023-12-17T22:47:20.5285447Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5286005Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5286361Z set -eo pipefail 2023-12-17T22:47:20.5286600Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5286980Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5287415Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5287706Z 2023-12-17T22:47:20.5288974Z Append to "C:\Users\runneradmin/.config/fish/config.fish": 2023-12-17T22:47:20.5289566Z 2023-12-17T22:47:20.5290069Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5290858Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5291233Z set -eo pipefail 2023-12-17T22:47:20.5291494Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5291877Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5292325Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5293050Z 2023-12-17T22:47:20.5295401Z Append to "C:\Users\runneradmin/.tcshrc": 2023-12-17T22:47:20.5295868Z 2023-12-17T22:47:20.5296370Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5296944Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5297323Z set -eo pipefail 2023-12-17T22:47:20.5297574Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5298032Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5298914Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5299379Z 2023-12-17T22:47:20.5299579Z Append to "C:\Users\runneradmin/.xonshrc": 2023-12-17T22:47:20.5300044Z 2023-12-17T22:47:20.5300473Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5300876Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5301234Z set -eo pipefail 2023-12-17T22:47:20.5301506Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5302144Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5302853Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5303312Z 2023-12-17T22:47:20.5303647Z Append to "C:\Users\runneradmin/Documents/PowerShell/profile.ps1": 2023-12-17T22:47:20.5304064Z 2023-12-17T22:47:20.5304374Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5304769Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5305146Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5305576Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5305955Z 2023-12-17T22:47:20.5306796Z Append to "C:\Users\runneradmin/Documents/WindowsPowerShell/profile.ps1": 2023-12-17T22:47:20.5307668Z 2023-12-17T22:47:20.5308291Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5309045Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5309801Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5310636Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5311172Z 2023-12-17T22:47:20.5311436Z Append to "C:/Miniconda/etc/profile.d/conda.sh": 2023-12-17T22:47:20.5312016Z 2023-12-17T22:47:20.5312624Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5313351Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5314051Z set -eo pipefail 2023-12-17T22:47:20.5314528Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5315254Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5316068Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5316607Z 2023-12-17T22:47:20.5316917Z Append to "C:/Miniconda/etc/fish/conf.d/conda.fish": 2023-12-17T22:47:20.5317555Z 2023-12-17T22:47:20.5318154Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5318871Z # Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5319548Z set -eo pipefail 2023-12-17T22:47:20.5320002Z # Conda Setup Action: Custom activation 2023-12-17T22:47:20.5320718Z conda activate "windows-latest-3.10" 2023-12-17T22:47:20.5321517Z # ---------------------------------------------------------------------------- 2023-12-17T22:47:20.5322041Z 2023-12-17T22:47:20.5322303Z Append to "C:/Miniconda/condabin/conda_hook.bat": 2023-12-17T22:47:20.5322890Z 2023-12-17T22:47:20.5340110Z :: --------------------------------------------------------------------------- 2023-12-17T22:47:20.5340900Z :: Conda Setup Action: Activate base 2023-12-17T22:47:20.5341506Z @call "%CONDA_BAT%" activate base 2023-12-17T22:47:20.5342056Z :: Conda Setup Action: Custom activation 2023-12-17T22:47:20.5342857Z @call "%CONDA_BAT%" activate "windows-latest-3.10" 2023-12-17T22:47:20.5344675Z :: Conda Setup Action: Basic configuration 2023-12-17T22:47:20.5345250Z @SETLOCAL EnableExtensions 2023-12-17T22:47:20.5345754Z @SETLOCAL DisableDelayedExpansion 2023-12-17T22:47:20.5346621Z :: --------------------------------------------------------------------------- 2023-12-17T22:47:20.5347132Z 2023-12-17T22:47:20.5347762Z ##[endgroup] 2023-12-17T22:47:20.5348524Z ##[group]Adding tools to 'base' env... 2023-12-17T22:47:20.5349111Z Do we need to update conda? 2023-12-17T22:47:20.5349572Z Do we need to update mamba? 2023-12-17T22:47:20.5350003Z Do we need to update python? 2023-12-17T22:47:20.5350590Z Do we need to update conda-build? 2023-12-17T22:47:20.5351181Z No tools were installed in 'base' env. 2023-12-17T22:47:20.5351936Z No post-install actions were taken on 'base' env. 2023-12-17T22:47:20.5352825Z ##[endgroup] 2023-12-17T22:47:20.5353488Z ##[group]Ensuring environment... 2023-12-17T22:47:20.5354008Z Can we conda create (from explicit)? 2023-12-17T22:47:20.5354538Z Can we conda create (simple)? 2023-12-17T22:47:20.5354996Z ... will conda create (simple). 2023-12-17T22:47:20.5355474Z Adding spec: python=3.10 2023-12-17T22:47:20.5356485Z ##[group]Updating 'windows-latest-3.10' env from conda create (simple)... 2023-12-17T22:47:20.5358162Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Miniconda\condabin\conda.bat create --name windows-latest-3.10 "python=3.10"" 2023-12-17T22:47:22.5521932Z Channels: 2023-12-17T22:47:22.5522503Z - conda-forge 2023-12-17T22:47:22.5522765Z - defaults 2023-12-17T22:47:22.5523018Z Platform: win-64 2023-12-17T22:47:53.4588635Z Collecting package metadata (repodata.json): ...working... done 2023-12-17T22:47:54.9064616Z Solving environment: ...working... done 2023-12-17T22:48:06.4574316Z 2023-12-17T22:48:06.4575158Z ## Package Plan ## 2023-12-17T22:48:06.4575733Z 2023-12-17T22:48:06.4576373Z environment location: C:\Miniconda\envs\windows-latest-3.10 2023-12-17T22:48:06.4576749Z 2023-12-17T22:48:06.4576859Z added / updated specs: 2023-12-17T22:48:06.4577159Z - python=3.10 2023-12-17T22:48:06.4577318Z 2023-12-17T22:48:06.4577322Z 2023-12-17T22:48:06.4577445Z The following packages will be downloaded: 2023-12-17T22:48:06.4577687Z 2023-12-17T22:48:06.4577813Z package | build 2023-12-17T22:48:06.4578204Z ---------------------------|----------------- 2023-12-17T22:48:06.4578694Z bzip2-1.0.8 | hcfcfb64_5 122 KB conda-forge 2023-12-17T22:48:06.4579902Z ca-certificates-2023.11.17 | h56e8100_0 151 KB conda-forge 2023-12-17T22:48:06.4581173Z libffi-3.4.2 | h8ffe710_5 41 KB conda-forge 2023-12-17T22:48:06.4582145Z libsqlite-3.44.2 | hcfcfb64_0 833 KB conda-forge 2023-12-17T22:48:06.4583083Z libzlib-1.2.13 | hcfcfb64_5 54 KB conda-forge 2023-12-17T22:48:06.4583851Z openssl-3.2.0 | hcfcfb64_1 7.9 MB conda-forge 2023-12-17T22:48:06.4584420Z pip-23.3.2 | pyhd8ed1ab_0 1.3 MB conda-forge 2023-12-17T22:48:06.4585006Z python-3.10.13 |h4de0772_0_cpython 15.2 MB conda-forge 2023-12-17T22:48:06.4585599Z setuptools-68.2.2 | pyhd8ed1ab_0 454 KB conda-forge 2023-12-17T22:48:06.4586542Z tk-8.6.13 | h5226925_1 3.3 MB conda-forge 2023-12-17T22:48:06.4587373Z tzdata-2023c | h71feb2d_0 115 KB conda-forge 2023-12-17T22:48:06.4588144Z ucrt-10.0.22621.0 | h57928b3_0 1.2 MB conda-forge 2023-12-17T22:48:06.4588708Z vc-14.3 | hcf57466_18 17 KB conda-forge 2023-12-17T22:48:06.4589266Z vc14_runtime-14.38.33130 | h82b7239_18 732 KB conda-forge 2023-12-17T22:48:06.4589859Z vs2015_runtime-14.38.33130 | hcb4865c_18 17 KB conda-forge 2023-12-17T22:48:06.4590560Z wheel-0.42.0 | pyhd8ed1ab_0 56 KB conda-forge 2023-12-17T22:48:06.4591098Z xz-5.2.6 | h8d14728_0 213 KB conda-forge 2023-12-17T22:48:06.4591569Z ------------------------------------------------------------ 2023-12-17T22:48:06.4592285Z Total: 31.7 MB 2023-12-17T22:48:06.4592829Z 2023-12-17T22:48:06.4593155Z The following NEW packages will be INSTALLED: 2023-12-17T22:48:06.4593596Z 2023-12-17T22:48:06.4594090Z bzip2 conda-forge/win-64::bzip2-1.0.8-hcfcfb64_5 2023-12-17T22:48:06.4595134Z ca-certificates conda-forge/win-64::ca-certificates-2023.11.17-h56e8100_0 2023-12-17T22:48:06.4595786Z libffi conda-forge/win-64::libffi-3.4.2-h8ffe710_5 2023-12-17T22:48:06.4596356Z libsqlite conda-forge/win-64::libsqlite-3.44.2-hcfcfb64_0 2023-12-17T22:48:06.4596934Z libzlib conda-forge/win-64::libzlib-1.2.13-hcfcfb64_5 2023-12-17T22:48:06.4597719Z openssl conda-forge/win-64::openssl-3.2.0-hcfcfb64_1 2023-12-17T22:48:06.4598895Z pip conda-forge/noarch::pip-23.3.2-pyhd8ed1ab_0 2023-12-17T22:48:06.4601513Z python conda-forge/win-64::python-3.10.13-h4de0772_0_cpython 2023-12-17T22:48:06.4602632Z setuptools conda-forge/noarch::setuptools-68.2.2-pyhd8ed1ab_0 2023-12-17T22:48:06.4603579Z tk conda-forge/win-64::tk-8.6.13-h5226925_1 2023-12-17T22:48:06.4604202Z tzdata conda-forge/noarch::tzdata-2023c-h71feb2d_0 2023-12-17T22:48:06.4604768Z ucrt conda-forge/win-64::ucrt-10.0.22621.0-h57928b3_0 2023-12-17T22:48:06.4605498Z vc conda-forge/win-64::vc-14.3-hcf57466_18 2023-12-17T22:48:06.4606654Z vc14_runtime conda-forge/win-64::vc14_runtime-14.38.33130-h82b7239_18 2023-12-17T22:48:06.4607654Z vs2015_runtime conda-forge/win-64::vs2015_runtime-14.38.33130-hcb4865c_18 2023-12-17T22:48:06.4608334Z wheel conda-forge/noarch::wheel-0.42.0-pyhd8ed1ab_0 2023-12-17T22:48:06.4609216Z xz conda-forge/win-64::xz-5.2.6-h8d14728_0 2023-12-17T22:48:06.4609674Z 2023-12-17T22:48:06.4609681Z 2023-12-17T22:48:06.4609688Z 2023-12-17T22:48:06.4609974Z Downloading and Extracting Packages: ...working... done 2023-12-17T22:48:06.6643053Z Preparing transaction: ...working... done 2023-12-17T22:48:08.4582461Z Verifying transaction: ...working... done 2023-12-17T22:48:17.6325677Z Executing transaction: ...working... done 2023-12-17T22:48:18.0871707Z # 2023-12-17T22:48:18.0872140Z # To activate this environment, use 2023-12-17T22:48:18.0872665Z # 2023-12-17T22:48:18.0873197Z # $ conda activate windows-latest-3.10 2023-12-17T22:48:18.0873537Z # 2023-12-17T22:48:18.0873772Z # To deactivate an active environment, use 2023-12-17T22:48:18.0874092Z # 2023-12-17T22:48:18.0874290Z # $ conda deactivate 2023-12-17T22:48:18.0874463Z 2023-12-17T22:48:18.1730481Z ##[endgroup] 2023-12-17T22:48:18.1731099Z ##[endgroup] 2023-12-17T22:48:18.1731749Z setup-miniconda ran successfully 2023-12-17T22:48:18.1960165Z ##[group]Run ./ci/build-test-one.sh pyqt5-simplebrowser --debug --deps=p 2023-12-17T22:48:18.1960897Z �[36;1m./ci/build-test-one.sh pyqt5-simplebrowser --debug --deps=p�[0m 2023-12-17T22:48:18.1995647Z shell: C:\Program Files\Git\bin\bash.EXE -l {0} 2023-12-17T22:48:18.1995997Z env: 2023-12-17T22:48:18.1996210Z KEY_BASE: windows-latest-3.10 2023-12-17T22:48:18.1996526Z PIP_DISABLE_PIP_VERSION_CHECK: 1 2023-12-17T22:48:18.1996815Z INPUT_RUN_POST: true 2023-12-17T22:48:18.1997134Z CONDA_PKGS_DIR: C:\Users\runneradmin\conda_pkgs_dir 2023-12-17T22:48:18.1997494Z TEST_BDIST: 2023-12-17T22:48:18.1997698Z ##[endgroup] 2023-12-17T22:48:19.6895258Z ##[group]Prepare the environment 2023-12-17T22:48:19.9771956Z Environment: 2023-12-17T22:48:19.9772613Z Platform win-amd64 2023-12-17T22:48:19.9772941Z Python version 3.10.13 2023-12-17T22:48:20.5396538Z Conda version 23.10.0 2023-12-17T22:48:20.5397418Z ##[endgroup] 2023-12-17T22:48:20.5398454Z ##[group]Check if pyqt5-simplebrowser sample exists 2023-12-17T22:48:20.5400992Z INFO: The sample is available for test at /d/a/freeze-test/freeze-test/samples/pyqt5-simplebrowser 2023-12-17T22:48:20.5406820Z ##[endgroup] 2023-12-17T22:48:20.5407325Z ##[group]Install platform specific utilities/packages 2023-12-17T22:48:20.5408095Z INFO: Install screencapture in Windows/MSYS2 2023-12-17T22:48:20.5705472Z ~/bin /d/a/freeze-test/freeze-test/samples/pyqt5-simplebrowser /d/a/freeze-test/freeze-test 2023-12-17T22:48:20.6235045Z 2023-12-17T22:48:20.6235564Z C:\Users\runneradmin\bin>// 2>nul || 2023-12-17T22:48:24.0947756Z screencapture.exe captures the screen or the active window and saves it to a file. 2023-12-17T22:48:24.0948997Z 2023-12-17T22:48:24.0949326Z Usage: 2023-12-17T22:48:24.0949871Z screencapture.exe filename [WindowTitle] 2023-12-17T22:48:24.0950286Z 2023-12-17T22:48:24.0950831Z filename - the file where the screen capture will be saved 2023-12-17T22:48:24.0951885Z allowed file extensions are - Bmp,Emf,Exif,Gif,Icon,Jpeg,Png,Tiff,Wmf. 2023-12-17T22:48:24.0953061Z WindowTitle - instead of capture whole screen you can point to a window 2023-12-17T22:48:24.0953928Z with a title which will put on focus and captuted. 2023-12-17T22:48:24.0954686Z For WindowTitle you can pass only the first few characters. 2023-12-17T22:48:24.0955534Z If don't want to change the current active window pass only "" 2023-12-17T22:48:24.1000431Z /d/a/freeze-test/freeze-test/samples/pyqt5-simplebrowser /d/a/freeze-test/freeze-test 2023-12-17T22:48:24.1001997Z ##[endgroup] 2023-12-17T22:48:24.1002943Z ##[group]Install dependencies for pyqt5-simplebrowser sample 2023-12-17T22:48:24.1004049Z + python /d/a/freeze-test/freeze-test/ci/build_test.py pyqt5-simplebrowser --debug 2023-12-17T22:48:25.3504649Z 2023-12-17T22:48:25.3505439Z # All requested packages already installed. 2023-12-17T22:48:25.3506370Z 2023-12-17T22:48:26.7060346Z 2023-12-17T22:48:26.7060911Z # All requested packages already installed. 2023-12-17T22:48:26.7061234Z 2023-12-17T22:48:31.8328979Z Channels: 2023-12-17T22:48:31.8329723Z - conda-forge 2023-12-17T22:48:31.8330220Z Platform: win-64 2023-12-17T22:48:41.0396053Z Collecting package metadata (repodata.json): ...working... done 2023-12-17T22:48:41.3915235Z Solving environment: ...working... done 2023-12-17T22:48:43.2371332Z 2023-12-17T22:48:43.2371813Z ## Package Plan ## 2023-12-17T22:48:43.2372127Z 2023-12-17T22:48:43.2372682Z environment location: C:\Miniconda\envs\windows-latest-3.10 2023-12-17T22:48:43.2373020Z 2023-12-17T22:48:43.2373118Z added / updated specs: 2023-12-17T22:48:43.2373450Z - cx_logging[version='>=3.1'] 2023-12-17T22:48:43.2373756Z - pip 2023-12-17T22:48:43.2373967Z - py-lief 2023-12-17T22:48:43.2374261Z - setuptools[version='<70,>=62.6'] 2023-12-17T22:48:43.2374615Z - wheel[version='0.42.0,>=0.38.4'] 2023-12-17T22:48:43.2374840Z 2023-12-17T22:48:43.2374844Z 2023-12-17T22:48:43.2376845Z The following packages will be downloaded: 2023-12-17T22:48:43.2377189Z 2023-12-17T22:48:43.2377324Z package | build 2023-12-17T22:48:43.2377789Z ---------------------------|----------------- 2023-12-17T22:48:43.2378304Z cx_logging-3.1.0 | py310h8d17308_2 30 KB conda-forge 2023-12-17T22:48:43.2378905Z liblief-0.12.3 | h63175ca_0 4.4 MB conda-forge 2023-12-17T22:48:43.2379490Z py-lief-0.12.3 | py310h00ffb61_0 2.0 MB conda-forge 2023-12-17T22:48:43.2380062Z python_abi-3.10 | 4_cp310 7 KB conda-forge 2023-12-17T22:48:43.2380566Z ------------------------------------------------------------ 2023-12-17T22:48:43.2380947Z Total: 6.5 MB 2023-12-17T22:48:43.2381203Z 2023-12-17T22:48:43.2381540Z The following NEW packages will be INSTALLED: 2023-12-17T22:48:43.2381787Z 2023-12-17T22:48:43.2382159Z cx_logging conda-forge/win-64::cx_logging-3.1.0-py310h8d17308_2 2023-12-17T22:48:43.2382758Z liblief conda-forge/win-64::liblief-0.12.3-h63175ca_0 2023-12-17T22:48:43.2383348Z py-lief conda-forge/win-64::py-lief-0.12.3-py310h00ffb61_0 2023-12-17T22:48:43.2383921Z python_abi conda-forge/win-64::python_abi-3.10-4_cp310 2023-12-17T22:48:43.2384218Z 2023-12-17T22:48:43.2384222Z 2023-12-17T22:48:43.2530029Z Preparing transaction: ...working... done 2023-12-17T22:48:43.3368524Z Verifying transaction: ...working... done 2023-12-17T22:48:43.5381432Z Executing transaction: ...working... done 2023-12-17T22:48:46.1301822Z Preparing transaction: ...working... done 2023-12-17T22:48:46.2208705Z Verifying transaction: ...working... done 2023-12-17T22:48:46.4529239Z Executing transaction: ...working... done 2023-12-17T22:48:47.6902662Z Channels: 2023-12-17T22:48:47.6903414Z - conda-forge 2023-12-17T22:48:47.6903886Z Platform: win-64 2023-12-17T22:49:00.3325104Z Collecting package metadata (repodata.json): ...working... done 2023-12-17T22:49:01.1681688Z Solving environment: ...working... done 2023-12-17T22:49:37.2145309Z 2023-12-17T22:49:37.2145790Z ## Package Plan ## 2023-12-17T22:49:37.2148038Z 2023-12-17T22:49:37.2148985Z environment location: C:\Miniconda\envs\windows-latest-3.10 2023-12-17T22:49:37.2149543Z 2023-12-17T22:49:37.2150135Z added / updated specs: 2023-12-17T22:49:37.2150695Z - pyqt 2023-12-17T22:49:37.2151115Z - pyqtwebengine 2023-12-17T22:49:37.2151384Z 2023-12-17T22:49:37.2151393Z 2023-12-17T22:49:37.2151622Z The following packages will be downloaded: 2023-12-17T22:49:37.2152062Z 2023-12-17T22:49:37.2152321Z package | build 2023-12-17T22:49:37.2153057Z ---------------------------|----------------- 2023-12-17T22:49:37.2153977Z gettext-0.21.1 | h5728263_0 5.3 MB conda-forge 2023-12-17T22:49:37.2155077Z glib-2.78.3 | h12be248_0 495 KB conda-forge 2023-12-17T22:49:37.2156136Z glib-tools-2.78.3 | h12be248_0 141 KB conda-forge 2023-12-17T22:49:37.2157276Z gst-plugins-base-1.22.7 | h001b923_1 1.9 MB conda-forge 2023-12-17T22:49:37.2158414Z gstreamer-1.22.7 | hb4038d2_1 1.8 MB conda-forge 2023-12-17T22:49:37.2159433Z icu-73.2 | h63175ca_0 12.8 MB conda-forge 2023-12-17T22:49:37.2160448Z krb5-1.21.2 | heb0366b_0 694 KB conda-forge 2023-12-17T22:49:37.2161528Z libclang-15.0.7 |default_hde6756a_4 145 KB conda-forge 2023-12-17T22:49:37.2162676Z libclang13-15.0.7 |default_h85b4d89_4 20.9 MB conda-forge 2023-12-17T22:49:37.2163850Z libglib-2.78.3 | h16e383f_0 2.5 MB conda-forge 2023-12-17T22:49:37.2164924Z libiconv-1.17 | hcfcfb64_2 621 KB conda-forge 2023-12-17T22:49:37.2167765Z libjpeg-turbo-3.0.0 | hcfcfb64_1 804 KB conda-forge 2023-12-17T22:49:37.2168541Z libogg-1.3.4 | h8ffe710_1 34 KB conda-forge 2023-12-17T22:49:37.2169120Z libpng-1.6.39 | h19919ed_0 336 KB conda-forge 2023-12-17T22:49:37.2169703Z libvorbis-1.3.7 | h0e60522_0 267 KB conda-forge 2023-12-17T22:49:37.2170278Z libwebp-1.3.2 | hcfcfb64_1 69 KB conda-forge 2023-12-17T22:49:37.2170851Z libwebp-base-1.3.2 | hcfcfb64_0 263 KB conda-forge 2023-12-17T22:49:37.2171418Z libxml2-2.12.3 | hc3477c8_0 1.7 MB conda-forge 2023-12-17T22:49:37.2171982Z packaging-23.2 | pyhd8ed1ab_0 48 KB conda-forge 2023-12-17T22:49:37.2172525Z pcre2-10.42 | h17e33f8_0 860 KB conda-forge 2023-12-17T22:49:37.2173216Z ply-3.11 | py_1 44 KB conda-forge 2023-12-17T22:49:37.2173744Z pyqt-5.15.9 | py310h1fd54f2_5 3.7 MB conda-forge 2023-12-17T22:49:37.2174287Z pyqt5-sip-12.12.2 | py310h00ffb61_5 78 KB conda-forge 2023-12-17T22:49:37.2174879Z pyqtwebengine-5.15.9 | py310he49db7d_5 124 KB conda-forge 2023-12-17T22:49:37.2175448Z qt-main-5.15.8 | h9e85ed6_18 58.0 MB conda-forge 2023-12-17T22:49:37.2175993Z qt-webengine-5.15.8 | h4bf5c4e_4 62.1 MB conda-forge 2023-12-17T22:49:37.2176554Z sip-6.7.12 | py310h00ffb61_0 493 KB conda-forge 2023-12-17T22:49:37.2177072Z toml-0.10.2 | pyhd8ed1ab_0 18 KB conda-forge 2023-12-17T22:49:37.2177588Z tomli-2.0.1 | pyhd8ed1ab_0 16 KB conda-forge 2023-12-17T22:49:37.2178098Z zstd-1.5.5 | h12be248_0 335 KB conda-forge 2023-12-17T22:49:37.2178565Z ------------------------------------------------------------ 2023-12-17T22:49:37.2178944Z Total: 176.5 MB 2023-12-17T22:49:37.2179192Z 2023-12-17T22:49:37.2179359Z The following NEW packages will be INSTALLED: 2023-12-17T22:49:37.2179627Z 2023-12-17T22:49:37.2179937Z gettext conda-forge/win-64::gettext-0.21.1-h5728263_0 2023-12-17T22:49:37.2180487Z glib conda-forge/win-64::glib-2.78.3-h12be248_0 2023-12-17T22:49:37.2181783Z glib-tools conda-forge/win-64::glib-tools-2.78.3-h12be248_0 2023-12-17T22:49:37.2182638Z gst-plugins-base conda-forge/win-64::gst-plugins-base-1.22.7-h001b923_1 2023-12-17T22:49:37.2183304Z gstreamer conda-forge/win-64::gstreamer-1.22.7-hb4038d2_1 2023-12-17T22:49:37.2183850Z icu conda-forge/win-64::icu-73.2-h63175ca_0 2023-12-17T22:49:37.2184365Z krb5 conda-forge/win-64::krb5-1.21.2-heb0366b_0 2023-12-17T22:49:37.2184937Z libclang conda-forge/win-64::libclang-15.0.7-default_hde6756a_4 2023-12-17T22:49:37.2185590Z libclang13 conda-forge/win-64::libclang13-15.0.7-default_h85b4d89_4 2023-12-17T22:49:37.2186191Z libglib conda-forge/win-64::libglib-2.78.3-h16e383f_0 2023-12-17T22:49:37.2186838Z libiconv conda-forge/win-64::libiconv-1.17-hcfcfb64_2 2023-12-17T22:49:37.2187618Z libjpeg-turbo conda-forge/win-64::libjpeg-turbo-3.0.0-hcfcfb64_1 2023-12-17T22:49:37.2188214Z libogg conda-forge/win-64::libogg-1.3.4-h8ffe710_1 2023-12-17T22:49:37.2188748Z libpng conda-forge/win-64::libpng-1.6.39-h19919ed_0 2023-12-17T22:49:37.2189292Z libvorbis conda-forge/win-64::libvorbis-1.3.7-h0e60522_0 2023-12-17T22:49:37.2189854Z libwebp conda-forge/win-64::libwebp-1.3.2-hcfcfb64_1 2023-12-17T22:49:37.2190446Z libwebp-base conda-forge/win-64::libwebp-base-1.3.2-hcfcfb64_0 2023-12-17T22:49:37.2191152Z libxml2 conda-forge/win-64::libxml2-2.12.3-hc3477c8_0 2023-12-17T22:49:37.2191736Z packaging conda-forge/noarch::packaging-23.2-pyhd8ed1ab_0 2023-12-17T22:49:37.2192293Z pcre2 conda-forge/win-64::pcre2-10.42-h17e33f8_0 2023-12-17T22:49:37.2192772Z ply conda-forge/noarch::ply-3.11-py_1 2023-12-17T22:49:37.2193277Z pyqt conda-forge/win-64::pyqt-5.15.9-py310h1fd54f2_5 2023-12-17T22:49:37.2193861Z pyqt5-sip conda-forge/win-64::pyqt5-sip-12.12.2-py310h00ffb61_5 2023-12-17T22:49:37.2194523Z pyqtwebengine conda-forge/win-64::pyqtwebengine-5.15.9-py310he49db7d_5 2023-12-17T22:49:37.2195135Z qt-main conda-forge/win-64::qt-main-5.15.8-h9e85ed6_18 2023-12-17T22:49:37.2195723Z qt-webengine conda-forge/win-64::qt-webengine-5.15.8-h4bf5c4e_4 2023-12-17T22:49:37.2196303Z sip conda-forge/win-64::sip-6.7.12-py310h00ffb61_0 2023-12-17T22:49:37.2196908Z toml conda-forge/noarch::toml-0.10.2-pyhd8ed1ab_0 2023-12-17T22:49:37.2197436Z tomli conda-forge/noarch::tomli-2.0.1-pyhd8ed1ab_0 2023-12-17T22:49:37.2197952Z zstd conda-forge/win-64::zstd-1.5.5-h12be248_0 2023-12-17T22:49:37.2198227Z 2023-12-17T22:49:37.2198231Z 2023-12-17T22:49:37.7981451Z Preparing transaction: ...working... done 2023-12-17T22:49:41.1823235Z Verifying transaction: ...working... done 2023-12-17T22:49:53.4728881Z Executing transaction: ...working... done 2023-12-17T22:49:53.6520131Z args: Namespace(sample='pyqt5-simplebrowser', basic_requirements=False, debug=True, develop=False, editable=False, latest=False, verbose=False) 2023-12-17T22:49:53.6521869Z data: {'test_app': ['gui:test_simplebrowser'], 'platform': ['!mingw']} 2023-12-17T22:49:53.6523922Z kw: {'extra_index_url': None, 'find_links': None, 'requirements': ['PyQt5 --only-binary --conda=pyqt', 'PyQtWebEngine --conda=pyqtwebengine'], 'develop': False, 'editable': False, 'latest': False, 'debug': True, 'verbose': False} 2023-12-17T22:49:53.6527402Z Requirements installed: setuptools setuptools pip setuptools<70,>=62.6 cx_Logging>=3.1 wheel>=0.38.4 py-lief wheel==0.42.0 setuptools pip https://marcelotduarte.github.io/packages/conda/win-64/cx_freeze-6.16.0.dev12-py310hf4a77e7_0.tar.bz2 pyqtwebengine pyqt 2023-12-17T22:49:53.6754439Z + set +x 2023-12-17T22:49:54.0325516Z ##[endgroup] 2023-12-17T22:49:54.0326411Z ##[group]Show packages (conda list) 2023-12-17T22:49:54.7771991Z Python 3.10.13 | packaged by conda-forge | (main, Oct 26 2023, 18:01:37) [MSC v.1935 64 bit (AMD64)] 2023-12-17T22:49:54.7772634Z 2023-12-17T22:49:54.7772648Z 2023-12-17T22:49:55.7927986Z # packages in environment at C:\Miniconda\envs\windows-latest-3.10: 2023-12-17T22:49:55.7928842Z # 2023-12-17T22:49:55.7929318Z # Name Version Build Channel 2023-12-17T22:49:55.7930280Z bzip2 1.0.8 hcfcfb64_5 conda-forge 2023-12-17T22:49:55.7931269Z ca-certificates 2023.11.17 h56e8100_0 conda-forge 2023-12-17T22:49:55.7932158Z cx_freeze 6.16.0.dev12 py310hf4a77e7_0 https://marcelotduarte.github.io/packages/conda 2023-12-17T22:49:55.7932916Z cx_logging 3.1.0 py310h8d17308_2 conda-forge 2023-12-17T22:49:55.7933517Z gettext 0.21.1 h5728263_0 conda-forge 2023-12-17T22:49:55.7934091Z glib 2.78.3 h12be248_0 conda-forge 2023-12-17T22:49:55.7934643Z glib-tools 2.78.3 h12be248_0 conda-forge 2023-12-17T22:49:55.7935254Z gst-plugins-base 1.22.7 h001b923_1 conda-forge 2023-12-17T22:49:55.7935875Z gstreamer 1.22.7 hb4038d2_1 conda-forge 2023-12-17T22:49:55.7936449Z icu 73.2 h63175ca_0 conda-forge 2023-12-17T22:49:55.7937005Z krb5 1.21.2 heb0366b_0 conda-forge 2023-12-17T22:49:55.7937844Z libclang 15.0.7 default_hde6756a_4 conda-forge 2023-12-17T22:49:55.7938498Z libclang13 15.0.7 default_h85b4d89_4 conda-forge 2023-12-17T22:49:55.7939071Z libffi 3.4.2 h8ffe710_5 conda-forge 2023-12-17T22:49:55.7939648Z libglib 2.78.3 h16e383f_0 conda-forge 2023-12-17T22:49:55.7940225Z libiconv 1.17 hcfcfb64_2 conda-forge 2023-12-17T22:49:55.7940815Z libjpeg-turbo 3.0.0 hcfcfb64_1 conda-forge 2023-12-17T22:49:55.7941385Z liblief 0.12.3 h63175ca_0 conda-forge 2023-12-17T22:49:55.7941945Z libogg 1.3.4 h8ffe710_1 conda-forge 2023-12-17T22:49:55.7942491Z libpng 1.6.39 h19919ed_0 conda-forge 2023-12-17T22:49:55.7943162Z libsqlite 3.44.2 hcfcfb64_0 conda-forge 2023-12-17T22:49:55.7943751Z libvorbis 1.3.7 h0e60522_0 conda-forge 2023-12-17T22:49:55.7944310Z libwebp 1.3.2 hcfcfb64_1 conda-forge 2023-12-17T22:49:55.7944846Z libwebp-base 1.3.2 hcfcfb64_0 conda-forge 2023-12-17T22:49:55.7945416Z libxml2 2.12.3 hc3477c8_0 conda-forge 2023-12-17T22:49:55.7945961Z libzlib 1.2.13 hcfcfb64_5 conda-forge 2023-12-17T22:49:55.7946495Z openssl 3.2.0 hcfcfb64_1 conda-forge 2023-12-17T22:49:55.7947030Z packaging 23.2 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7947600Z pcre2 10.42 h17e33f8_0 conda-forge 2023-12-17T22:49:55.7948134Z pip 23.3.2 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7948635Z ply 3.11 py_1 conda-forge 2023-12-17T22:49:55.7949181Z py-lief 0.12.3 py310h00ffb61_0 conda-forge 2023-12-17T22:49:55.7949734Z pyqt 5.15.9 py310h1fd54f2_5 conda-forge 2023-12-17T22:49:55.7950280Z pyqt5-sip 12.12.2 py310h00ffb61_5 conda-forge 2023-12-17T22:49:55.7950891Z pyqtwebengine 5.15.9 py310he49db7d_5 conda-forge 2023-12-17T22:49:55.7951496Z python 3.10.13 h4de0772_0_cpython conda-forge 2023-12-17T22:49:55.7952054Z python_abi 3.10 4_cp310 conda-forge 2023-12-17T22:49:55.7952624Z qt-main 5.15.8 h9e85ed6_18 conda-forge 2023-12-17T22:49:55.7953200Z qt-webengine 5.15.8 h4bf5c4e_4 conda-forge 2023-12-17T22:49:55.7953787Z setuptools 68.2.2 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7954328Z sip 6.7.12 py310h00ffb61_0 conda-forge 2023-12-17T22:49:55.7954868Z tk 8.6.13 h5226925_1 conda-forge 2023-12-17T22:49:55.7955400Z toml 0.10.2 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7955908Z tomli 2.0.1 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7956464Z tzdata 2023c h71feb2d_0 conda-forge 2023-12-17T22:49:55.7957010Z ucrt 10.0.22621.0 h57928b3_0 conda-forge 2023-12-17T22:49:55.7957505Z vc 14.3 hcf57466_18 conda-forge 2023-12-17T22:49:55.7958114Z vc14_runtime 14.38.33130 h82b7239_18 conda-forge 2023-12-17T22:49:55.7958710Z vs2015_runtime 14.38.33130 hcb4865c_18 conda-forge 2023-12-17T22:49:55.7959255Z wheel 0.42.0 pyhd8ed1ab_0 conda-forge 2023-12-17T22:49:55.7960656Z xz 5.2.6 h8d14728_0 conda-forge 2023-12-17T22:49:55.7961251Z zstd 1.5.5 h12be248_0 conda-forge 2023-12-17T22:49:55.8482636Z ##[endgroup] 2023-12-17T22:49:55.8483898Z ##[group]Freeze pyqt5-simplebrowser sample (cx_Freeze 6.16.0-dev12) 2023-12-17T22:49:55.8485113Z python setup.py build_exe --silent --excludes=tkinter --include-msvcr 2023-12-17T22:49:56.1621360Z running build_exe 2023-12-17T22:50:20.3379738Z QLibraryInfo: 2023-12-17T22:50:20.3381018Z ArchDataPath C:\Miniconda\envs\windows-latest-3.10\Library -> lib\PyQt5\Qt5 2023-12-17T22:50:20.3382613Z BinariesPath C:\Miniconda\envs\windows-latest-3.10\Library\bin -> lib\PyQt5\Qt5\bin 2023-12-17T22:50:20.3384035Z DataPath C:\Miniconda\envs\windows-latest-3.10\Library -> lib\PyQt5\Qt5 2023-12-17T22:50:20.3385337Z DocumentationPath C:\Miniconda\envs\windows-latest-3.10\Library\doc -> lib\PyQt5\Qt5\doc 2023-12-17T22:50:20.3387039Z ExamplesPath C:\Miniconda\envs\windows-latest-3.10\Library\examples -> lib\PyQt5\Qt5\examples 2023-12-17T22:50:20.3388505Z HeadersPath C:\Miniconda\envs\windows-latest-3.10\Library\include\qt -> lib\PyQt5\Qt5\include\qt 2023-12-17T22:50:20.3389990Z ImportsPath C:\Miniconda\envs\windows-latest-3.10\Library\imports -> lib\PyQt5\Qt5\imports 2023-12-17T22:50:20.3391418Z LibrariesPath C:\Miniconda\envs\windows-latest-3.10\Library\lib -> lib\PyQt5\Qt5\lib 2023-12-17T22:50:20.3392830Z LibraryExecutablesPath C:\Miniconda\envs\windows-latest-3.10\Library\bin -> lib\PyQt5\Qt5\bin 2023-12-17T22:50:20.3394330Z PluginsPath C:\Miniconda\envs\windows-latest-3.10\Library\plugins -> lib\PyQt5\Qt5\plugins 2023-12-17T22:50:20.3395643Z PrefixPath C:\Miniconda\envs\windows-latest-3.10\Library -> lib\PyQt5\Qt5 2023-12-17T22:50:20.3396845Z Qml2ImportsPath C:\Miniconda\envs\windows-latest-3.10\Library\qml -> lib\PyQt5\Qt5\qml 2023-12-17T22:50:20.3397776Z SettingsPath . -> . 2023-12-17T22:50:20.3398724Z TestsPath C:\Miniconda\envs\windows-latest-3.10\Library\tests -> lib\PyQt5\Qt5\tests 2023-12-17T22:50:20.3400285Z TranslationsPath C:\Miniconda\envs\windows-latest-3.10\Library\translations -> lib\PyQt5\Qt5\translations 2023-12-17T22:50:20.3401475Z WARNING: cannot find 'api-ms-win-core-path-l1-1-0.dll' 2023-12-17T22:50:20.3402382Z WARNING: cannot find 'api-ms-win-core-rtlsupport-l1-2-2.dll' 2023-12-17T22:50:20.3403342Z WARNING: cannot find 'api-ms-win-core-processthreads-l1-1-3.dll' 2023-12-17T22:50:20.3404228Z WARNING: cannot find 'api-ms-win-core-heap-l2-1-0.dll' 2023-12-17T22:50:20.3405070Z WARNING: cannot find 'api-ms-win-core-synch-l1-2-1.dll' 2023-12-17T22:50:20.3405891Z WARNING: cannot find 'api-ms-win-core-file-l1-2-2.dll' 2023-12-17T22:50:20.3406663Z WARNING: cannot find 'api-ms-win-core-file-l1-2-4.dll' 2023-12-17T22:50:20.3407464Z WARNING: cannot find 'api-ms-win-core-job-l1-1-0.dll' 2023-12-17T22:50:20.3408332Z WARNING: cannot find 'api-ms-win-core-largeinteger-l1-1-0.dll' 2023-12-17T22:50:20.3409292Z WARNING: cannot find 'api-ms-win-core-libraryloader-l1-2-3.dll' 2023-12-17T22:50:20.3410224Z WARNING: cannot find 'api-ms-win-core-libraryloader-l1-2-2.dll' 2023-12-17T22:50:20.3411167Z WARNING: cannot find 'api-ms-win-core-libraryloader-l1-2-0.dll' 2023-12-17T22:50:20.3412129Z WARNING: cannot find 'api-ms-win-core-libraryloader-l1-2-1.dll' 2023-12-17T22:50:20.3413047Z WARNING: cannot find 'api-ms-win-core-libraryloader-l2-1-0.dll' 2023-12-17T22:50:20.3413984Z WARNING: cannot find 'api-ms-win-core-namedpipe-l1-2-2.dll' 2023-12-17T22:50:20.3414872Z WARNING: cannot find 'api-ms-win-core-datetime-l1-1-2.dll' 2023-12-17T22:50:20.3415784Z WARNING: cannot find 'api-ms-win-core-processsnapshot-l1-1-0.dll' 2023-12-17T22:50:20.3416776Z WARNING: cannot find 'api-ms-win-core-errorhandling-l1-1-3.dll' 2023-12-17T22:50:20.3417712Z WARNING: cannot find 'api-ms-win-security-base-l1-2-0.dll' 2023-12-17T22:50:20.3418600Z WARNING: cannot find 'api-ms-win-security-appcontainer-l1-1-0.dll' 2023-12-17T22:50:20.3419501Z WARNING: cannot find 'api-ms-win-core-wow64-l1-1-1.dll' 2023-12-17T22:50:20.3420494Z WARNING: cannot find 'api-ms-win-core-wow64-l1-1-3.dll' 2023-12-17T22:50:20.3421406Z WARNING: cannot find 'api-ms-win-core-systemtopology-l1-1-1.dll' 2023-12-17T22:50:20.3422371Z WARNING: cannot find 'api-ms-win-core-systemtopology-l1-1-0.dll' 2023-12-17T22:50:20.3423370Z WARNING: cannot find 'api-ms-win-core-processtopology-l1-1-0.dll' 2023-12-17T22:50:20.3424320Z WARNING: cannot find 'api-ms-win-core-namespace-l1-1-0.dll' 2023-12-17T22:50:20.3425135Z WARNING: cannot find 'api-ms-win-core-file-l2-1-2.dll' 2023-12-17T22:50:20.3425932Z WARNING: cannot find 'api-ms-win-core-file-l2-1-3.dll' 2023-12-17T22:50:20.3426740Z WARNING: cannot find 'api-ms-win-core-xstate-l2-1-1.dll' 2023-12-17T22:50:20.3427530Z WARNING: cannot find 'api-ms-win-core-xstate-l2-1-2.dll' 2023-12-17T22:50:20.3428357Z WARNING: cannot find 'api-ms-win-core-fibers-l2-1-0.dll' 2023-12-17T22:50:20.3430177Z WARNING: cannot find 'api-ms-win-core-fibers-l2-1-1.dll' 2023-12-17T22:50:20.3431128Z WARNING: cannot find 'api-ms-win-core-localization-private-l1-1-0.dll' 2023-12-17T22:50:20.3432153Z WARNING: cannot find 'api-ms-win-core-sidebyside-l1-1-0.dll' 2023-12-17T22:50:20.3433032Z WARNING: cannot find 'api-ms-win-core-appcompat-l1-1-0.dll' 2023-12-17T22:50:20.3433998Z WARNING: cannot find 'api-ms-win-core-windowserrorreporting-l1-1-1.dll' 2023-12-17T22:50:20.3435065Z WARNING: cannot find 'api-ms-win-core-windowserrorreporting-l1-1-2.dll' 2023-12-17T22:50:20.3436170Z WARNING: cannot find 'api-ms-win-core-windowserrorreporting-l1-1-0.dll' 2023-12-17T22:50:20.3437241Z WARNING: cannot find 'api-ms-win-core-windowserrorreporting-l1-1-3.dll' 2023-12-17T22:50:20.3438230Z WARNING: cannot find 'api-ms-win-core-console-l1-2-1.dll' 2023-12-17T22:50:20.3439089Z WARNING: cannot find 'api-ms-win-core-console-l2-2-0.dll' 2023-12-17T22:50:20.3440052Z WARNING: cannot find 'api-ms-win-core-console-l3-2-0.dll' 2023-12-17T22:50:20.3440986Z WARNING: cannot find 'api-ms-win-core-apiquery-l1-1-0.dll' 2023-12-17T22:50:20.3441971Z WARNING: cannot find 'api-ms-win-core-delayload-l1-1-1.dll' 2023-12-17T22:50:20.3442946Z WARNING: cannot find 'api-ms-win-core-appcompat-l1-1-1.dll' 2023-12-17T22:50:20.3443857Z WARNING: cannot find 'ext-ms-win-oobe-query-l1-1-0.dll' 2023-12-17T22:50:20.3814126Z ##[endgroup] 2023-12-17T22:50:20.3815335Z ##[group]Prepare to run the pyqt5-simplebrowser sample 2023-12-17T22:50:20.3823453Z BASE_PYTHON=python 2023-12-17T22:50:24.6559893Z ##[endgroup] 2023-12-17T22:50:24.6814488Z ##[group]Run GUI app 'test_simplebrowser.exe' 2023-12-17T22:50:24.6815235Z Process 4304 started the GUI app 2023-12-17T22:50:24.6815862Z STDOUT========================================================================== 2023-12-17T22:50:24.6816423Z ================================================================================ 2023-12-17T22:50:24.6820312Z ##[endgroup] 2023-12-17T22:50:24.6823010Z ##[group]Print pyqt5-simplebrowser-0-test_simplebrowser-win-amd64-3_10.err 2023-12-17T22:50:24.6956250Z STDERR========================================================================== 2023-12-17T22:50:24.6957006Z QLibraryInfo: 2023-12-17T22:50:24.6958284Z ArchDataPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5 2023-12-17T22:50:24.6960187Z BinariesPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\bin 2023-12-17T22:50:24.6962592Z DataPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5 2023-12-17T22:50:24.6965318Z DocumentationPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\doc 2023-12-17T22:50:24.6967951Z ExamplesPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\examples 2023-12-17T22:50:24.6969188Z HeadersPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\include 2023-12-17T22:50:24.6970548Z ImportsPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\imports 2023-12-17T22:50:24.6971681Z LibrariesPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\lib 2023-12-17T22:50:24.6972840Z LibraryExecutablesPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\bin 2023-12-17T22:50:24.6973967Z PluginsPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\plugins 2023-12-17T22:50:24.6975366Z PrefixPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5 2023-12-17T22:50:24.6977893Z Qml2ImportsPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\qml 2023-12-17T22:50:24.6979132Z SettingsPath . 2023-12-17T22:50:24.6980119Z TestsPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\tests 2023-12-17T22:50:24.6982365Z TranslationsPath D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10\lib\PyQt5\Qt5\translations 2023-12-17T22:50:24.6983493Z LibraryPaths: 2023-12-17T22:50:24.6984873Z ['D:/a/freeze-test/freeze-test/samples/pyqt5-simplebrowser/build/exe.win-amd64-3.10/lib/PyQt5/Qt5/plugins'] 2023-12-17T22:50:24.6986649Z FrozenDir: D:\a\freeze-test\freeze-test\samples\pyqt5-simplebrowser\build\exe.win-amd64-3.10 2023-12-17T22:50:24.6987687Z ================================================================================ 2023-12-17T22:50:24.6988674Z ##[endgroup] 2023-12-17T22:50:24.6989618Z ##[group]Prepare to run the next pyqt5-simplebrowser sample 2023-12-17T22:50:24.6990294Z status=0 2023-12-17T22:50:24.6990956Z ##[endgroup] 2023-12-17T22:50:24.7130358Z ##[group]Run mkdir pyqt5-simplebrowser-windows-latest 2023-12-17T22:50:24.7131023Z �[36;1mmkdir pyqt5-simplebrowser-windows-latest�[0m 2023-12-17T22:50:24.7131682Z �[36;1mcp build/exe.*/*.{err,log,png} pyqt5-simplebrowser-windows-latest || true�[0m 2023-12-17T22:50:24.7132258Z �[36;1mif [[ windows-latest == macos-* ]]; then�[0m 2023-12-17T22:50:24.7132773Z �[36;1m mkdir pyqt5-simplebrowser-windows-latest/app-3.10�[0m 2023-12-17T22:50:24.7133539Z �[36;1m cp build/*.app/Contents/MacOS/*.{err,log,png} pyqt5-simplebrowser-windows-latest/app-3.10 || true�[0m 2023-12-17T22:50:24.7134176Z �[36;1mfi�[0m 2023-12-17T22:50:24.7144872Z shell: C:\Program Files\Git\bin\bash.EXE -l {0} 2023-12-17T22:50:24.7145264Z env: 2023-12-17T22:50:24.7145497Z KEY_BASE: windows-latest-3.10 2023-12-17T22:50:24.7145856Z PIP_DISABLE_PIP_VERSION_CHECK: 1 2023-12-17T22:50:24.7146210Z INPUT_RUN_POST: true 2023-12-17T22:50:24.7146544Z CONDA_PKGS_DIR: C:\Users\runneradmin\conda_pkgs_dir 2023-12-17T22:50:24.7147015Z ##[endgroup] 2023-12-17T22:50:25.9739498Z cp: cannot stat 'build/exe.*/*.png': No such file or directory 2023-12-17T22:50:25.9892221Z ##[group]Run actions/upload-artifact@v4 2023-12-17T22:50:25.9892626Z with: 2023-12-17T22:50:25.9892965Z name: logs-conda-pyqt5-simplebrowser-windows-latest-3.10 2023-12-17T22:50:25.9893564Z path: ./samples/pyqt5-simplebrowser/pyqt5-simplebrowser-windows-latest/** 2023-12-17T22:50:25.9894051Z if-no-files-found: ignore 2023-12-17T22:50:25.9894318Z compression-level: 6 2023-12-17T22:50:25.9894535Z env: 2023-12-17T22:50:25.9894735Z KEY_BASE: windows-latest-3.10 2023-12-17T22:50:25.9895033Z PIP_DISABLE_PIP_VERSION_CHECK: 1 2023-12-17T22:50:25.9895324Z INPUT_RUN_POST: true 2023-12-17T22:50:25.9895639Z CONDA_PKGS_DIR: C:\Users\runneradmin\conda_pkgs_dir 2023-12-17T22:50:25.9895996Z ##[endgroup] 2023-12-17T22:50:26.2439599Z With the provided path, there will be 3 files uploaded 2023-12-17T22:50:26.2445497Z Artifact name is valid! 2023-12-17T22:50:26.2449970Z Root directory input is valid! 2023-12-17T22:50:26.6499881Z Beginning upload of artifact content to blob storage 2023-12-17T22:50:26.9648968Z Uploaded bytes 1041 2023-12-17T22:50:27.0477982Z Finished uploading artifact content to blob storage! 2023-12-17T22:50:27.0490692Z SHA256 hash of uploaded artifact zip is d46752c3a29a93d7c0f642fd6551367c2c794635c05360bc7211b5a32bb6751d 2023-12-17T22:50:27.0493110Z Finalizing artifact upload 2023-12-17T22:50:27.1980984Z Artifact logs-conda-pyqt5-simplebrowser-windows-latest-3.10.zip successfully finalized. Artifact ID 1120243158 2023-12-17T22:50:27.1982877Z Artifact logs-conda-pyqt5-simplebrowser-windows-latest-3.10 has been successfully uploaded! Final size is 1041 bytes. Artifact ID is 1120243158 2023-12-17T22:50:27.2314787Z Post job cleanup. 2023-12-17T22:50:27.3478188Z ##[group]Removing uncompressed packages to trim down cache folder... 2023-12-17T22:50:27.3485292Z Removing "C:\Users\runneradmin\conda_pkgs_dir\bzip2-1.0.8-hcfcfb64_5" 2023-12-17T22:50:27.3581988Z Removing "C:\Users\runneradmin\conda_pkgs_dir\ca-certificates-2023.11.17-h56e8100_0" 2023-12-17T22:50:27.3624957Z Removing "C:\Users\runneradmin\conda_pkgs_dir\cx_freeze-6.16.0.dev12-py310hf4a77e7_0" 2023-12-17T22:50:27.4123921Z Removing "C:\Users\runneradmin\conda_pkgs_dir\cx_logging-3.1.0-py310h8d17308_2" 2023-12-17T22:50:27.4177642Z Removing "C:\Users\runneradmin\conda_pkgs_dir\gettext-0.21.1-h5728263_0" 2023-12-17T22:50:27.6881345Z Removing "C:\Users\runneradmin\conda_pkgs_dir\glib-2.78.3-h12be248_0" 2023-12-17T22:50:27.7667609Z Removing "C:\Users\runneradmin\conda_pkgs_dir\glib-tools-2.78.3-h12be248_0" 2023-12-17T22:50:27.7727439Z Removing "C:\Users\runneradmin\conda_pkgs_dir\gst-plugins-base-1.22.7-h001b923_1" 2023-12-17T22:50:27.8174207Z Removing "C:\Users\runneradmin\conda_pkgs_dir\gstreamer-1.22.7-hb4038d2_1" 2023-12-17T22:50:27.8764820Z Removing "C:\Users\runneradmin\conda_pkgs_dir\icu-73.2-h63175ca_0" 2023-12-17T22:50:27.9244167Z Removing "C:\Users\runneradmin\conda_pkgs_dir\krb5-1.21.2-heb0366b_0" 2023-12-17T22:50:27.9322863Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libclang-15.0.7-default_hde6756a_4" 2023-12-17T22:50:27.9396561Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libclang13-15.0.7-default_h85b4d89_4" 2023-12-17T22:50:27.9468161Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libffi-3.4.2-h8ffe710_5" 2023-12-17T22:50:27.9524228Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libglib-2.78.3-h16e383f_0" 2023-12-17T22:50:27.9900799Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libiconv-1.17-hcfcfb64_2" 2023-12-17T22:50:27.9958492Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libjpeg-turbo-3.0.0-hcfcfb64_1" 2023-12-17T22:50:28.3524331Z Removing "C:\Users\runneradmin\conda_pkgs_dir\liblief-0.12.3-h63175ca_0" 2023-12-17T22:50:28.3970274Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libogg-1.3.4-h8ffe710_1" 2023-12-17T22:50:28.4023437Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libpng-1.6.39-h19919ed_0" 2023-12-17T22:50:28.4092361Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libsqlite-3.44.2-hcfcfb64_0" 2023-12-17T22:50:28.4133651Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libvorbis-1.3.7-h0e60522_0" 2023-12-17T22:50:28.4190814Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libwebp-1.3.2-hcfcfb64_1" 2023-12-17T22:50:28.4233956Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libwebp-base-1.3.2-hcfcfb64_0" 2023-12-17T22:50:28.4307853Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libxml2-2.12.3-hc3477c8_0" 2023-12-17T22:50:28.4429653Z Removing "C:\Users\runneradmin\conda_pkgs_dir\libzlib-1.2.13-hcfcfb64_5" 2023-12-17T22:50:28.4473422Z Removing "C:\Users\runneradmin\conda_pkgs_dir\openssl-3.2.0-hcfcfb64_1" 2023-12-17T22:50:28.4901291Z Removing "C:\Users\runneradmin\conda_pkgs_dir\packaging-23.2-pyhd8ed1ab_0" 2023-12-17T22:50:28.4966740Z Removing "C:\Users\runneradmin\conda_pkgs_dir\pcre2-10.42-h17e33f8_0" 2023-12-17T22:50:28.5403021Z Removing "C:\Users\runneradmin\conda_pkgs_dir\pip-23.3.2-pyhd8ed1ab_0" 2023-12-17T22:50:28.5983041Z Removing "C:\Users\runneradmin\conda_pkgs_dir\ply-3.11-py_1" 2023-12-17T22:50:28.6021301Z Removing "C:\Users\runneradmin\conda_pkgs_dir\py-lief-0.12.3-py310h00ffb61_0" 2023-12-17T22:50:28.6073709Z Removing "C:\Users\runneradmin\conda_pkgs_dir\pyqt-5.15.9-py310h1fd54f2_5" 2023-12-17T22:50:28.7403068Z Removing "C:\Users\runneradmin\conda_pkgs_dir\pyqt5-sip-12.12.2-py310h00ffb61_5" 2023-12-17T22:50:28.7462250Z Removing "C:\Users\runneradmin\conda_pkgs_dir\pyqtwebengine-5.15.9-py310he49db7d_5" 2023-12-17T22:50:28.7556208Z Removing "C:\Users\runneradmin\conda_pkgs_dir\python-3.10.13-h4de0772_0_cpython" 2023-12-17T22:50:29.0832442Z Removing "C:\Users\runneradmin\conda_pkgs_dir\python_abi-3.10-4_cp310" 2023-12-17T22:50:29.0870667Z Removing "C:\Users\runneradmin\conda_pkgs_dir\qt-main-5.15.8-h9e85ed6_18" 2023-12-17T22:50:30.6285018Z Removing "C:\Users\runneradmin\conda_pkgs_dir\qt-webengine-5.15.8-h4bf5c4e_4" 2023-12-17T22:50:30.6730672Z Removing "C:\Users\runneradmin\conda_pkgs_dir\setuptools-68.2.2-pyhd8ed1ab_0" 2023-12-17T22:50:30.7041663Z Removing "C:\Users\runneradmin\conda_pkgs_dir\sip-6.7.12-py310h00ffb61_0" 2023-12-17T22:50:30.7313613Z Removing "C:\Users\runneradmin\conda_pkgs_dir\tk-8.6.13-h5226925_1" 2023-12-17T22:50:30.8744993Z Removing "C:\Users\runneradmin\conda_pkgs_dir\toml-0.10.2-pyhd8ed1ab_0" 2023-12-17T22:50:30.8791392Z Removing "C:\Users\runneradmin\conda_pkgs_dir\tomli-2.0.1-pyhd8ed1ab_0" 2023-12-17T22:50:30.8838260Z Removing "C:\Users\runneradmin\conda_pkgs_dir\tzdata-2023c-h71feb2d_0" 2023-12-17T22:50:30.9769965Z Removing "C:\Users\runneradmin\conda_pkgs_dir\ucrt-10.0.22621.0-h57928b3_0" 2023-12-17T22:50:31.0023100Z Removing "C:\Users\runneradmin\conda_pkgs_dir\vc-14.3-hcf57466_18" 2023-12-17T22:50:31.0058522Z Removing "C:\Users\runneradmin\conda_pkgs_dir\vc14_runtime-14.38.33130-h82b7239_18" 2023-12-17T22:50:31.0122708Z Removing "C:\Users\runneradmin\conda_pkgs_dir\vs2015_runtime-14.38.33130-hcb4865c_18" 2023-12-17T22:50:31.0158924Z Removing "C:\Users\runneradmin\conda_pkgs_dir\wheel-0.42.0-pyhd8ed1ab_0" 2023-12-17T22:50:31.4110641Z Removing "C:\Users\runneradmin\conda_pkgs_dir\xz-5.2.6-h8d14728_0" 2023-12-17T22:50:31.4177378Z Removing "C:\Users\runneradmin\conda_pkgs_dir\zstd-1.5.5-h12be248_0" 2023-12-17T22:50:31.4233241Z ##[endgroup] 2023-12-17T22:50:31.4512466Z Post job cleanup. 2023-12-17T22:50:31.6328124Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-12-17T22:50:31.6552356Z git version 2.43.0.windows.1 2023-12-17T22:50:31.6614831Z Temporarily overriding HOME='D:\a\_temp\734cc1b2-5b8d-4d44-8a48-f6456258b45b' before making global git config changes 2023-12-17T22:50:31.6616295Z Adding repository directory to the temporary git global config as a safe directory 2023-12-17T22:50:31.6624787Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\freeze-test\freeze-test 2023-12-17T22:50:31.6888694Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core\.sshCommand 2023-12-17T22:50:31.7110025Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-12-17T22:50:32.1195357Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-12-17T22:50:32.1394309Z http.https://github.com/.extraheader 2023-12-17T22:50:32.1424006Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all http.https://github.com/.extraheader 2023-12-17T22:50:32.1660224Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-12-17T22:50:32.5800891Z Cleaning up orphan processes

(Edited to show the library change after the QCoreApplication is created with pyqt 5.12.3)
Hi Marcelo, thanks for the response.

The difference that is causing the issue on my side is the old pyqt version (5.12.3). I created a simple env that has just the pyqt, started a python shell and executed:

>QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.LibraryExecutablesPath)
returned: 'C:/bld/qt_1646603227296/_h_env/Library/bin' 

(the path that does not exist in my machine and that i believe is the machine that compiled qt)
Note that if i create the QCoreApplication the library executables path is fixed:

QtCore.QCoreApplication([])
QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.LibraryExecutablesPath)
<local_path_to_conda_env>/Library/bin

However, creating the env with pyqt 5.15.9 and executing the same command, the library path is correct without creating the QCoreApplication:

>QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.LibraryExecutablesPath)
'<local_path_to_conda_env>/Library/bin'

So it looks like that i will have to update the pyqt. However i still think that your code should not access library info before the creation of a QCoreApplication because those values can change after the creation (from the QCoreApplication.libraryPaths docs:

"...The return value of this function may change when a QCoreApplication is created. It is not recommended to call it before 
creating a QCoreApplication.... "

And from what i understood in the code you are accessing the the library paths in _qt_libraryinfo_paths inside _qthooks file

The return value of this function may change when a QCoreApplication is created.

The point is that it will not be created. If it's not going to be created, it's not going to be changed.

But going in another direction. Previously, pyqt5 worked poorly and pyqt6 and pyside6 did not work at all with the methods used, which included guessing. This was a path I found that allowed it to work on various systems and various environments, including installation via pip, conda-forge and msys2 (MinGW). And it has worked from versions 5.15 to 6.4x

The return value of this function may change when a QCoreApplication is created.

The point is that it will not be created. If it's not going to be created, it's not going to be changed.

Ok Marcelo i agree with the quote above, i would just add: The point is that it will not be created. If it's not going to be created, it's not going to be changed. And if its not going to be changed it wont be initialized.

My point is just that some pyqt/qt package might have those values not initialized. Unfortunately that was my case with pyqt 5.12.3 and qt 5.12.9. I tested newer versions (5.15.4 and 5.15.7) and in the newer versions the values were correct before creating the qApp. Just wanted to point out that according with the documentation this is not guaranteed, and this can happen again

Initially, I confess that I hadn't paid attention to the version of Pyqt you were using.
As pyqt 5.12 has been EOL for some time, I will not resolve this issue. Ideally, you should update to 5.15, which is LTS.
But, of course, if you have a solution that doesn't break subsequent versions and want to make a PR, you're welcome.

If you need to use qt 5.12, you can try to use 6.14, 6.13, 6.12, 6.11... I believe that 6.12 works.