Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PythonSpec missing architecture #3137

Open
rousku opened this issue Oct 12, 2023 · 1 comment
Open

PythonSpec missing architecture #3137

rousku opened this issue Oct 12, 2023 · 1 comment
Assignees
Labels
enhancement help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted.

Comments

@rousku
Copy link

rousku commented Oct 12, 2023

Issue

I'm trying to test a library on Python 3.11 x86. The test fails because tox builds the library for amd64 but creates a test virtualenv for x86.

In the tox log, we can see that there are two occasions where tox tries to find an interpreter for Python 3.11. On the first occasion, PythonSpec contains architecture=32, but on the next occasion, PythonSpec doesn't include the architecture, and it finds a 64-bit interpreter.

2023-10-12T04:40:08.3887355Z .pkg: 390 I find interpreter for spec PythonSpec(major=3, minor=11, architecture=32) [virtualenv\discovery\builtin.py:58]
2023-10-12T04:40:21.6137301Z .pkg-cpython311: 13618 I find interpreter for spec PythonSpec(implementation=cpython, major=3, minor=11) [virtualenv\discovery\builtin.py:58]

Environment

Provide at least:

  • OS: Microsoft Windows Server 2022 10.0.20348
Output of pip list of the host Python, where tox is installed
2023-10-12T04:42:57.8543058Z ##[section]Starting: CmdLine
2023-10-12T04:42:57.8646938Z ==============================================================================
2023-10-12T04:42:57.8647079Z Task         : Command line
2023-10-12T04:42:57.8647137Z Description  : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows
2023-10-12T04:42:57.8647244Z Version      : 2.229.0
2023-10-12T04:42:57.8647298Z Author       : Microsoft Corporation
2023-10-12T04:42:57.8647380Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/command-line
2023-10-12T04:42:57.8647496Z ==============================================================================
2023-10-12T04:42:58.6897584Z Generating script.
2023-10-12T04:42:58.6980366Z Script contents: shell
2023-10-12T04:42:58.6987537Z poetry run pip list
2023-10-12T04:42:58.7258817Z ========================== Starting Command Output ===========================
2023-10-12T04:42:58.7474178Z ##[command]"C:\Windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\66e47ae9-483c-4b36-9ab0-7f3143d9b3f6.cmd""
2023-10-12T04:43:00.0609221Z Package                    Version      Editable project location
2023-10-12T04:43:00.0611812Z -------------------------- ------------ -------------------------
2023-10-12T04:43:00.0613666Z artifacts-keyring          0.3.4
2023-10-12T04:43:00.0615574Z atomicwrites               1.4.1
2023-10-12T04:43:00.0617574Z attrs                      23.1.0
2023-10-12T04:43:00.0619526Z cachetools                 5.3.1
2023-10-12T04:43:00.0621542Z certifi                    2023.7.22
2023-10-12T04:43:00.0623469Z chardet                    5.2.0
2023-10-12T04:43:00.0625518Z charset-normalizer         3.2.0
2023-10-12T04:43:00.0627344Z colorama                   0.4.6
2023-10-12T04:43:00.0629259Z distlib                    0.3.7
2023-10-12T04:43:00.0631209Z docutils                   0.18.1
2023-10-12T04:43:00.0633118Z filelock                   3.12.4
2023-10-12T04:43:00.0635040Z grpcio                     1.58.0
2023-10-12T04:43:00.0637084Z grpcio-tools               1.58.0
2023-10-12T04:43:00.0638928Z idna                       3.4
2023-10-12T04:43:00.0640934Z importlib-metadata         6.8.0
2023-10-12T04:43:00.0642908Z importlib-resources        6.0.1
2023-10-12T04:43:00.0644709Z iniconfig                  2.0.0
2023-10-12T04:43:00.0646622Z jaraco.classes             3.3.0
2023-10-12T04:43:00.0648593Z Jinja2                     3.1.2
2023-10-12T04:43:00.0650436Z keyring                    24.2.0
2023-10-12T04:43:00.0652441Z markdown-it-py             3.0.0
2023-10-12T04:43:00.0654284Z MarkupSafe                 2.1.3
2023-10-12T04:43:00.0656215Z mdurl                      0.1.2
2023-10-12T04:43:00.0658179Z more-itertools             10.1.0
2023-10-12T04:43:00.0659987Z mypy                       0.941
2023-10-12T04:43:00.0661948Z mypy-extensions            1.0.0
2023-10-12T04:43:00.0663774Z nh3                        0.2.14
2023-10-12T04:43:00.0665659Z numpy                      1.24.4
2023-10-12T04:43:00.0667571Z packaging                  23.1
2023-10-12T04:43:00.0672337Z pathspec                   0.11.2
2023-10-12T04:43:00.0674557Z Pillow                     10.0.1
2023-10-12T04:43:00.0676532Z pip                        23.2.1
2023-10-12T04:43:00.0678556Z pkginfo                    1.9.6
2023-10-12T04:43:00.0680493Z platformdirs               3.10.0
2023-10-12T04:43:00.0682366Z pluggy                     1.3.0
2023-10-12T04:43:00.0684312Z protobuf                   4.24.3
2023-10-12T04:43:00.0686187Z psutil                     5.9.5
2023-10-12T04:43:00.0688065Z py                         1.11.0
2023-10-12T04:43:00.0689991Z pydantic                   1.10.12
2023-10-12T04:43:00.0691879Z Pygments                   2.16.1
2023-10-12T04:43:00.0693933Z pyproject-api              1.6.1
2023-10-12T04:43:00.0695662Z Pypubsub                   4.0.3
2023-10-12T04:43:00.0697548Z pytest                     6.2.5
2023-10-12T04:43:00.0699605Z pytest-custom-exit-code    0.3.0
2023-10-12T04:43:00.0701455Z python-dateutil            2.8.2
2023-10-12T04:43:00.0703225Z pytz                       2023.3.post1
2023-10-12T04:43:00.0705059Z pywin32                    303
2023-10-12T04:43:00.0707027Z pywin32-ctypes             0.2.2
2023-10-12T04:43:00.0708817Z PyYAML                     6.0.1
2023-10-12T04:43:00.0710758Z readme-renderer            42.0
2023-10-12T04:43:00.0712545Z requests                   2.31.0
2023-10-12T04:43:00.0714521Z requests-toolbelt          1.0.0
2023-10-12T04:43:00.0716311Z rfc3986                    2.0.0
2023-10-12T04:43:00.0718206Z rich                       13.5.3
2023-10-12T04:43:00.0720095Z robotframework             6.1.1
2023-10-12T04:43:00.0724031Z robotframework-ride        2.0b1
2023-10-12T04:43:00.0725915Z robotframework-robocop     3.2.1
2023-10-12T04:43:00.0727765Z setuptools                 68.2.2
2023-10-12T04:43:00.0729538Z six                        1.16.0
2023-10-12T04:43:00.0731411Z toml                       0.10.2
2023-10-12T04:43:00.0733274Z tomli                      2.0.1
2023-10-12T04:43:00.0735134Z tox                        4.11.3
2023-10-12T04:43:00.0736973Z twine                      4.0.2
2023-10-12T04:43:00.0738941Z types-protobuf             3.20.4.6
2023-10-12T04:43:00.0740832Z types-setuptools           57.4.18
2023-10-12T04:43:00.0742625Z typing_extensions          4.8.0
2023-10-12T04:43:00.0744468Z urllib3                    2.0.4
2023-10-12T04:43:00.0746337Z virtualenv                 20.24.5
2023-10-12T04:43:00.0748214Z wheel                      0.41.2
2023-10-12T04:43:00.0750078Z wxPython                   4.2.1
2023-10-12T04:43:00.0751959Z yapf                       0.32.0
2023-10-12T04:43:00.0753803Z zipp                       3.17.0
2023-10-12T04:43:00.8293351Z ##[section]Finishing: CmdLine

Output of running tox

Output of tox -rvv
2023-10-12T04:40:06.3637732Z ##[section]Starting: Run tox
2023-10-12T04:40:06.3742875Z ==============================================================================
2023-10-12T04:40:06.3743018Z Task         : Command line
2023-10-12T04:40:06.3743075Z Description  : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows
2023-10-12T04:40:06.3743184Z Version      : 2.229.0
2023-10-12T04:40:06.3743237Z Author       : Microsoft Corporation
2023-10-12T04:40:06.3743316Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/command-line
2023-10-12T04:40:06.3743429Z ==============================================================================
2023-10-12T04:40:07.2061652Z Generating script.
2023-10-12T04:40:07.2152538Z Script contents: shell
2023-10-12T04:40:07.2159833Z poetry run tox -rvv -- -- D:\a\1\a\tox
2023-10-12T04:40:07.2434573Z ========================== Starting Command Output ===========================
2023-10-12T04:40:07.2654326Z ##[command]"C:\Windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\16dbb320-984a-4b25-95ca-2e3338f7f561.cmd""
2023-10-12T04:40:08.3887355Z .pkg: 390 I find interpreter for spec PythonSpec(major=3, minor=11, architecture=32) [virtualenv\discovery\builtin.py:58]
2023-10-12T04:40:08.3901026Z .pkg: 390 D got python info of %s from (WindowsPath('C:/hostedtoolcache/windows/Python/3.8.10/x64/python.exe'), WindowsPath('C:/Users/VssAdministrator/AppData/Local/pypa/virtualenv/py_info/1/8d958e67b0441d288eabf08102d723c7727905ba32031cb1810ad3a801138392.json')) [virtualenv\app_data\via_disk_folder.py:131]
2023-10-12T04:40:08.4276045Z .pkg: 437 I proposed PythonInfo(spec=CPython3.8.10.final.0-64, system=C:\hostedtoolcache\windows\Python\3.8.10\x64\python.exe, exe=D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\Scripts\python.exe, platform=win32, version='3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)]', encoding_fs_io=utf-8-cp1252) [virtualenv\discovery\builtin.py:65]
2023-10-12T04:40:08.4336970Z .pkg: 437 D get interpreter info via cmd: 'C:\hostedtoolcache\windows\Python\3.11.5\x86\python.exe' 'D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\discovery\py_info.py' 6K2yCEE0sHjF84E96ZOg79MBNWYhgn1G lYHKOnepn1Y8RRZb80nsTfwBvDWtzVj7 [virtualenv\discovery\cached_py_info.py:111]
2023-10-12T04:40:11.9106091Z .pkg: 3914 D wrote python info of %s at (WindowsPath('C:/hostedtoolcache/windows/Python/3.11.5/x86/python.exe'), WindowsPath('C:/Users/VssAdministrator/AppData/Local/pypa/virtualenv/py_info/1/9fd35b344d2fedeb768dd67e5eee6d27f2a7d24a088e5bc13b66dd4078f382e7.json')) [virtualenv\app_data\via_disk_folder.py:151]
2023-10-12T04:40:11.9109799Z .pkg: 3914 I proposed Pep514PythonInfo(spec=CPython3.11.5.final.0-32, exe=C:\hostedtoolcache\windows\Python\3.11.5\x86\python.exe, platform=win32, version='3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:21:31) [MSC v.1936 32 bit (Intel)]', encoding_fs_io=utf-8-utf-8) [virtualenv\discovery\builtin.py:65]
2023-10-12T04:40:11.9111042Z .pkg: 3914 D accepted Pep514PythonInfo(spec=CPython3.11.5.final.0-32, exe=C:\hostedtoolcache\windows\Python\3.11.5\x86\python.exe, platform=win32, version='3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:21:31) [MSC v.1936 32 bit (Intel)]', encoding_fs_io=utf-8-utf-8) [virtualenv\discovery\builtin.py:67]
2023-10-12T04:40:11.9139454Z .pkg: 3914 D symlink on filesystem does work [virtualenv\info.py:45]
2023-10-12T04:40:11.9144960Z .pkg: 3914 D filesystem is not case-sensitive [virtualenv\info.py:26]
2023-10-12T04:40:11.9890026Z .pkg: 3992 I find interpreter for spec PythonSpec(path=D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\Scripts\python.exe) [virtualenv\discovery\builtin.py:58]
2023-10-12T04:40:11.9891917Z .pkg: 3992 I proposed PythonInfo(spec=CPython3.8.10.final.0-64, system=C:\hostedtoolcache\windows\Python\3.8.10\x64\python.exe, exe=D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\Scripts\python.exe, platform=win32, version='3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)]', encoding_fs_io=utf-8-cp1252) [virtualenv\discovery\builtin.py:65]
2023-10-12T04:40:11.9894772Z .pkg: 3992 D accepted PythonInfo(spec=CPython3.8.10.final.0-64, system=C:\hostedtoolcache\windows\Python\3.8.10\x64\python.exe, exe=D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\Scripts\python.exe, platform=win32, version='3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)]', encoding_fs_io=utf-8-cp1252) [virtualenv\discovery\builtin.py:67]
2023-10-12T04:40:11.9965085Z .pkg: 4008 W remove tox env folder D:\a\1\s\.tox\.pkg [tox\tox_env\api.py:322]
2023-10-12T04:40:11.9978330Z .pkg-cpython311: 4008 W remove tox env folder D:\a\1\s\.tox\.pkg-cpython311 [tox\tox_env\api.py:322]
2023-10-12T04:40:11.9992559Z py311-x86: 4008 I create virtual environment via CPython3Windows(dest=D:\a\1\s\.tox\py311-x86, clear=False, no_vcs_ignore=False, global=False) [virtualenv\run\session.py:50]
2023-10-12T04:40:11.9996449Z py311-x86: 4008 D create folder D:\a\1\s\.tox\py311-x86\Lib\site-packages [virtualenv\util\path\_sync.py:12]
2023-10-12T04:40:11.9999526Z py311-x86: 4008 D create folder D:\a\1\s\.tox\py311-x86\Scripts [virtualenv\util\path\_sync.py:12]
2023-10-12T04:40:12.0001842Z py311-x86: 4008 D write D:\a\1\s\.tox\py311-x86\pyvenv.cfg [virtualenv\create\pyenv_cfg.py:32]
2023-10-12T04:40:12.0002475Z py311-x86: 4008 D 	home = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0003041Z py311-x86: 4008 D 	implementation = CPython [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0003609Z py311-x86: 4008 D 	version_info = 3.11.5.final.0 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0004189Z py311-x86: 4008 D 	virtualenv = 20.24.5 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0004752Z py311-x86: 4008 D 	include-system-site-packages = false [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0005381Z py311-x86: 4008 D 	base-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0005919Z py311-x86: 4008 D 	base-exec-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0006563Z py311-x86: 4008 D 	base-executable = C:\hostedtoolcache\windows\Python\3.11.5\x86\python.exe [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.0014468Z py311-x86: 4008 D copy C:\hostedtoolcache\windows\Python\3.11.5\x86\Lib\venv\scripts\nt\python.exe to D:\a\1\s\.tox\py311-x86\Scripts\python.exe [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.0387261Z py311-x86: 4039 D copy C:\hostedtoolcache\windows\Python\3.11.5\x86\Lib\venv\scripts\nt\pythonw.exe to D:\a\1\s\.tox\py311-x86\Scripts\pythonw.exe [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.0665894Z py311-x86: 4070 D create virtualenv import hook file D:\a\1\s\.tox\py311-x86\Lib\site-packages\_virtualenv.pth [virtualenv\create\via_global_ref\api.py:91]
2023-10-12T04:40:12.0668354Z py311-x86: 4070 D create D:\a\1\s\.tox\py311-x86\Lib\site-packages\_virtualenv.py [virtualenv\create\via_global_ref\api.py:94]
2023-10-12T04:40:12.0674358Z py311-x86: 4070 D ============================== target debug ============================== [virtualenv\run\session.py:52]
2023-10-12T04:40:12.0678355Z py311-x86: 4070 D debug via 'D:\a\1\s\.tox\py311-x86\Scripts\python.exe' 'D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\create\debug.py' [virtualenv\create\creator.py:200]
2023-10-12T04:40:12.2098038Z py311-x86: 4070 D {
2023-10-12T04:40:12.2098504Z   "sys": {
2023-10-12T04:40:12.2099008Z     "executable": "D:\\a\\1\\s\\.tox\\py311-x86\\Scripts\\python.exe",
2023-10-12T04:40:12.2099389Z     "_base_executable": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86\\python.exe",
2023-10-12T04:40:12.2099813Z     "prefix": "D:\\a\\1\\s\\.tox\\py311-x86",
2023-10-12T04:40:12.2100116Z     "base_prefix": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86",
2023-10-12T04:40:12.2101256Z     "real_prefix": null,
2023-10-12T04:40:12.2101640Z     "exec_prefix": "D:\\a\\1\\s\\.tox\\py311-x86",
2023-10-12T04:40:12.2101966Z     "base_exec_prefix": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86",
2023-10-12T04:40:12.2102246Z     "path": [
2023-10-12T04:40:12.2102522Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86\\python311.zip",
2023-10-12T04:40:12.2102854Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86\\DLLs",
2023-10-12T04:40:12.2103160Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86\\Lib",
2023-10-12T04:40:12.2103488Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86",
2023-10-12T04:40:12.2103848Z       "D:\\a\\1\\s\\.tox\\py311-x86",
2023-10-12T04:40:12.2104238Z       "D:\\a\\1\\s\\.tox\\py311-x86\\Lib\\site-packages"
2023-10-12T04:40:12.2104493Z     ],
2023-10-12T04:40:12.2104735Z     "meta_path": [
2023-10-12T04:40:12.2105060Z       "<class '_virtualenv._Finder'>",
2023-10-12T04:40:12.2105437Z       "<class '_frozen_importlib.BuiltinImporter'>",
2023-10-12T04:40:12.2105819Z       "<class '_frozen_importlib.FrozenImporter'>",
2023-10-12T04:40:12.2106207Z       "<class '_frozen_importlib_external.PathFinder'>"
2023-10-12T04:40:12.2106479Z     ],
2023-10-12T04:40:12.2106712Z     "fs_encoding": "utf-8",
2023-10-12T04:40:12.2106996Z     "io_encoding": "cp1252"
2023-10-12T04:40:12.2107227Z   },
2023-10-12T04:40:12.2107576Z   "version": "3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:21:31) [MSC v.1936 32 bit (Intel)]",
2023-10-12T04:40:12.2107969Z   "makefile_filename": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x86\\Lib\\config\\Makefile",
2023-10-12T04:40:12.2108362Z   "os": "<module 'os' (frozen)>",
2023-10-12T04:40:12.2108700Z   "site": "<module 'site' (frozen)>",
2023-10-12T04:40:12.2109191Z   "datetime": "<module 'datetime' from 'C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.5\\\\x86\\\\Lib\\\\datetime.py'>",
2023-10-12T04:40:12.2109597Z   "math": "<module 'math' (built-in)>",
2023-10-12T04:40:12.2110103Z   "json": "<module 'json' from 'C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.5\\\\x86\\\\Lib\\\\json\\\\__init__.py'>"
2023-10-12T04:40:12.2110452Z } [virtualenv\run\session.py:53]
2023-10-12T04:40:12.2111214Z py311-x86: 4211 I add seed packages via FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv) [virtualenv\run\session.py:57]
2023-10-12T04:40:12.2137695Z py311-x86: 4227 D install pip from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\pip-23.2.1-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:12.2142797Z py311-x86: 4227 D install setuptools from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\setuptools-68.2.0-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:12.2154412Z py311-x86: 4227 D install wheel from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\wheel-0.41.2-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:12.2167949Z py311-x86: 4227 D build install image for setuptools-68.2.0-py3-none-any.whl to C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any [virtualenv\seed\embed\via_app_data\pip_install\base.py:47]
2023-10-12T04:40:12.2188621Z py311-x86: 4227 D build install image for wheel-0.41.2-py3-none-any.whl to C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any [virtualenv\seed\embed\via_app_data\pip_install\base.py:47]
2023-10-12T04:40:12.2192535Z py311-x86: 4227 D build install image for pip-23.2.1-py3-none-any.whl to C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any [virtualenv\seed\embed\via_app_data\pip_install\base.py:47]
2023-10-12T04:40:12.2701859Z py311-x86: 4273 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel to D:\a\1\s\.tox\py311-x86\Lib\site-packages\wheel [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.3091492Z py311-x86: 4320 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel-0.41.2.dist-info to D:\a\1\s\.tox\py311-x86\Lib\site-packages\wheel-0.41.2.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.3161508Z py311-x86: 4320 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel-0.41.2.virtualenv to D:\a\1\s\.tox\py311-x86\Lib\site-packages\wheel-0.41.2.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.3211059Z py311-x86: 4320 D generated console scripts wheel3.11.exe wheel.exe wheel-3.11.exe wheel3.exe [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:12.4483743Z py311-x86: 4461 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\distutils-precedence.pth to D:\a\1\s\.tox\py311-x86\Lib\site-packages\distutils-precedence.pth [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.4501516Z py311-x86: 4461 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\pkg_resources to D:\a\1\s\.tox\py311-x86\Lib\site-packages\pkg_resources [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.4775101Z py311-x86: 4477 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools to D:\a\1\s\.tox\py311-x86\Lib\site-packages\setuptools [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.5970844Z py311-x86: 4602 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools-68.2.0.dist-info to D:\a\1\s\.tox\py311-x86\Lib\site-packages\setuptools-68.2.0.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.6023613Z py311-x86: 4602 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools-68.2.0.virtualenv to D:\a\1\s\.tox\py311-x86\Lib\site-packages\setuptools-68.2.0.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.6031337Z py311-x86: 4602 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\_distutils_hack to D:\a\1\s\.tox\py311-x86\Lib\site-packages\_distutils_hack [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.6046315Z py311-x86: 4617 D generated console scripts  [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:12.6797845Z py311-x86: 4680 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip to D:\a\1\s\.tox\py311-x86\Lib\site-packages\pip [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.8998174Z py311-x86: 4899 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip-23.2.1.dist-info to D:\a\1\s\.tox\py311-x86\Lib\site-packages\pip-23.2.1.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.9035783Z py311-x86: 4914 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip-23.2.1.virtualenv to D:\a\1\s\.tox\py311-x86\Lib\site-packages\pip-23.2.1.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:12.9060451Z py311-x86: 4914 D generated console scripts pip.exe pip3.exe pip3.11.exe pip-3.11.exe [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:12.9061382Z py311-x86: 4914 I add activators for Bash, Batch, Fish, Nushell, PowerShell, Python [virtualenv\run\session.py:63]
2023-10-12T04:40:12.9095809Z py311-x86: 4914 D write D:\a\1\s\.tox\py311-x86\pyvenv.cfg [virtualenv\create\pyenv_cfg.py:32]
2023-10-12T04:40:12.9096412Z py311-x86: 4914 D 	home = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9097040Z py311-x86: 4914 D 	implementation = CPython [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9097681Z py311-x86: 4914 D 	version_info = 3.11.5.final.0 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9098241Z py311-x86: 4914 D 	virtualenv = 20.24.5 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9098841Z py311-x86: 4914 D 	include-system-site-packages = false [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9099429Z py311-x86: 4914 D 	base-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9100014Z py311-x86: 4914 D 	base-exec-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x86 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9103275Z py311-x86: 4914 D 	base-executable = C:\hostedtoolcache\windows\Python\3.11.5\x86\python.exe [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:12.9123973Z py311-x86: 4914 W install_deps> python -I -m pip install pytest [tox\tox_env\api.py:427]
2023-10-12T04:40:20.1515685Z Collecting pytest
2023-10-12T04:40:20.1517038Z   Obtaining dependency information for pytest from https://files.pythonhosted.org/packages/df/d0/e192c4275aecabf74faa1aacd75ef700091913236ec78b1a98f62a2412ee/pytest-7.4.2-py3-none-any.whl.metadata
2023-10-12T04:40:20.4159484Z   Downloading pytest-7.4.2-py3-none-any.whl.metadata (7.9 kB)
2023-10-12T04:40:20.4627603Z Collecting iniconfig (from pytest)
2023-10-12T04:40:20.4628220Z   Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)
2023-10-12T04:40:20.5098153Z Collecting packaging (from pytest)
2023-10-12T04:40:20.5099485Z   Obtaining dependency information for packaging from https://files.pythonhosted.org/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl.metadata
2023-10-12T04:40:20.5101413Z   Using cached packaging-23.2-py3-none-any.whl.metadata (3.2 kB)
2023-10-12T04:40:20.5565439Z Collecting pluggy<2.0,>=0.12 (from pytest)
2023-10-12T04:40:20.5566644Z   Obtaining dependency information for pluggy<2.0,>=0.12 from https://files.pythonhosted.org/packages/05/b8/42ed91898d4784546c5f06c60506400548db3f7a4b3fb441cba4e5c17952/pluggy-1.3.0-py3-none-any.whl.metadata
2023-10-12T04:40:20.5567080Z   Downloading pluggy-1.3.0-py3-none-any.whl.metadata (4.3 kB)
2023-10-12T04:40:20.6035397Z Collecting colorama (from pytest)
2023-10-12T04:40:20.6036311Z   Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB)
2023-10-12T04:40:20.6189492Z Downloading pytest-7.4.2-py3-none-any.whl (324 kB)
2023-10-12T04:40:20.7915593Z    ---------------------------------------- 324.5/324.5 kB 2.2 MB/s eta 0:00:00
2023-10-12T04:40:20.8227444Z Downloading pluggy-1.3.0-py3-none-any.whl (18 kB)
2023-10-12T04:40:20.8384752Z Using cached packaging-23.2-py3-none-any.whl (53 kB)
2023-10-12T04:40:20.9948162Z Installing collected packages: pluggy, packaging, iniconfig, colorama, pytest
2023-10-12T04:40:21.5266018Z Successfully installed colorama-0.4.6 iniconfig-2.0.0 packaging-23.2 pluggy-1.3.0 pytest-7.4.2
2023-10-12T04:40:21.6058799Z py311-x86: 13618 I exit 0 (8.70 seconds) D:\a\1\s> python -I -m pip install pytest pid=3252 [tox\execute\api.py:279]
2023-10-12T04:40:21.6137301Z .pkg-cpython311: 13618 I find interpreter for spec PythonSpec(implementation=cpython, major=3, minor=11) [virtualenv\discovery\builtin.py:58]
2023-10-12T04:40:21.6138509Z .pkg-cpython311: 13618 I proposed PythonInfo(spec=CPython3.8.10.final.0-64, system=C:\hostedtoolcache\windows\Python\3.8.10\x64\python.exe, exe=D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\Scripts\python.exe, platform=win32, version='3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)]', encoding_fs_io=utf-8-cp1252) [virtualenv\discovery\builtin.py:65]
2023-10-12T04:40:21.6164615Z .pkg-cpython311: 13618 D get interpreter info via cmd: 'C:\hostedtoolcache\windows\Python\3.11.5\x64\python.exe' 'D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\discovery\py_info.py' AT5LVmrtg113jRtrFko50ddXtmMHLguP 8E4igrtrAzsu3o7d4eRpjv7Du273q5S7 [virtualenv\discovery\cached_py_info.py:111]
2023-10-12T04:40:24.7902997Z .pkg-cpython311: 16792 D wrote python info of %s at (WindowsPath('C:/hostedtoolcache/windows/Python/3.11.5/x64/python.exe'), WindowsPath('C:/Users/VssAdministrator/AppData/Local/pypa/virtualenv/py_info/1/b070965738270710055187756c73f709f595eb92c161bd6450e1fcd60f3e7931.json')) [virtualenv\app_data\via_disk_folder.py:151]
2023-10-12T04:40:24.7906934Z .pkg-cpython311: 16792 I proposed Pep514PythonInfo(spec=CPython3.11.5.final.0-64, exe=C:\hostedtoolcache\windows\Python\3.11.5\x64\python.exe, platform=win32, version='3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', encoding_fs_io=utf-8-utf-8) [virtualenv\discovery\builtin.py:65]
2023-10-12T04:40:24.7908098Z .pkg-cpython311: 16792 D accepted Pep514PythonInfo(spec=CPython3.11.5.final.0-64, exe=C:\hostedtoolcache\windows\Python\3.11.5\x64\python.exe, platform=win32, version='3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', encoding_fs_io=utf-8-utf-8) [virtualenv\discovery\builtin.py:67]
2023-10-12T04:40:24.8132997Z .pkg-cpython311: 16823 I create virtual environment via CPython3Windows(dest=D:\a\1\s\.tox\.pkg-cpython311, clear=False, no_vcs_ignore=False, global=False) [virtualenv\run\session.py:50]
2023-10-12T04:40:24.8135981Z .pkg-cpython311: 16823 D create folder D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages [virtualenv\util\path\_sync.py:12]
2023-10-12T04:40:24.8142668Z .pkg-cpython311: 16823 D create folder D:\a\1\s\.tox\.pkg-cpython311\Scripts [virtualenv\util\path\_sync.py:12]
2023-10-12T04:40:24.8145129Z .pkg-cpython311: 16823 D write D:\a\1\s\.tox\.pkg-cpython311\pyvenv.cfg [virtualenv\create\pyenv_cfg.py:32]
2023-10-12T04:40:24.8145771Z .pkg-cpython311: 16823 D 	home = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8146410Z .pkg-cpython311: 16823 D 	implementation = CPython [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8147008Z .pkg-cpython311: 16823 D 	version_info = 3.11.5.final.0 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8147577Z .pkg-cpython311: 16823 D 	virtualenv = 20.24.5 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8148146Z .pkg-cpython311: 16823 D 	include-system-site-packages = false [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8148788Z .pkg-cpython311: 16823 D 	base-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8149448Z .pkg-cpython311: 16823 D 	base-exec-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8150109Z .pkg-cpython311: 16823 D 	base-executable = C:\hostedtoolcache\windows\Python\3.11.5\x64\python.exe [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:24.8153904Z .pkg-cpython311: 16823 D copy C:\hostedtoolcache\windows\Python\3.11.5\x64\Lib\venv\scripts\nt\python.exe to D:\a\1\s\.tox\.pkg-cpython311\Scripts\python.exe [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:24.8550511Z .pkg-cpython311: 16854 D copy C:\hostedtoolcache\windows\Python\3.11.5\x64\Lib\venv\scripts\nt\pythonw.exe to D:\a\1\s\.tox\.pkg-cpython311\Scripts\pythonw.exe [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:24.8832103Z .pkg-cpython311: 16885 D create virtualenv import hook file D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\_virtualenv.pth [virtualenv\create\via_global_ref\api.py:91]
2023-10-12T04:40:24.8834422Z .pkg-cpython311: 16885 D create D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\_virtualenv.py [virtualenv\create\via_global_ref\api.py:94]
2023-10-12T04:40:24.8840284Z .pkg-cpython311: 16885 D ============================== target debug ============================== [virtualenv\run\session.py:52]
2023-10-12T04:40:24.8842794Z .pkg-cpython311: 16885 D debug via 'D:\a\1\s\.tox\.pkg-cpython311\Scripts\python.exe' 'D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\create\debug.py' [virtualenv\create\creator.py:200]
2023-10-12T04:40:24.9845284Z .pkg-cpython311: 16885 D {
2023-10-12T04:40:24.9845754Z   "sys": {
2023-10-12T04:40:24.9846247Z     "executable": "D:\\a\\1\\s\\.tox\\.pkg-cpython311\\Scripts\\python.exe",
2023-10-12T04:40:24.9846635Z     "_base_executable": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64\\python.exe",
2023-10-12T04:40:24.9847071Z     "prefix": "D:\\a\\1\\s\\.tox\\.pkg-cpython311",
2023-10-12T04:40:24.9847387Z     "base_prefix": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64",
2023-10-12T04:40:24.9847709Z     "real_prefix": null,
2023-10-12T04:40:24.9848564Z     "exec_prefix": "D:\\a\\1\\s\\.tox\\.pkg-cpython311",
2023-10-12T04:40:24.9848983Z     "base_exec_prefix": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64",
2023-10-12T04:40:24.9849285Z     "path": [
2023-10-12T04:40:24.9849527Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64\\python311.zip",
2023-10-12T04:40:24.9849821Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64\\DLLs",
2023-10-12T04:40:24.9850104Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64\\Lib",
2023-10-12T04:40:24.9850381Z       "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64",
2023-10-12T04:40:24.9851741Z       "D:\\a\\1\\s\\.tox\\.pkg-cpython311",
2023-10-12T04:40:24.9852677Z       "D:\\a\\1\\s\\.tox\\.pkg-cpython311\\Lib\\site-packages"
2023-10-12T04:40:24.9853149Z     ],
2023-10-12T04:40:24.9854165Z     "meta_path": [
2023-10-12T04:40:24.9854652Z       "<class '_virtualenv._Finder'>",
2023-10-12T04:40:24.9855008Z       "<class '_frozen_importlib.BuiltinImporter'>",
2023-10-12T04:40:24.9855337Z       "<class '_frozen_importlib.FrozenImporter'>",
2023-10-12T04:40:24.9857992Z       "<class '_frozen_importlib_external.PathFinder'>"
2023-10-12T04:40:24.9859094Z     ],
2023-10-12T04:40:24.9860101Z     "fs_encoding": "utf-8",
2023-10-12T04:40:24.9862514Z     "io_encoding": "cp1252"
2023-10-12T04:40:24.9864114Z   },
2023-10-12T04:40:24.9864558Z   "version": "3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]",
2023-10-12T04:40:24.9866202Z   "makefile_filename": "C:\\hostedtoolcache\\windows\\Python\\3.11.5\\x64\\Lib\\config\\Makefile",
2023-10-12T04:40:24.9868323Z   "os": "<module 'os' (frozen)>",
2023-10-12T04:40:24.9868681Z   "site": "<module 'site' (frozen)>",
2023-10-12T04:40:24.9869124Z   "datetime": "<module 'datetime' from 'C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.5\\\\x64\\\\Lib\\\\datetime.py'>",
2023-10-12T04:40:24.9869508Z   "math": "<module 'math' (built-in)>",
2023-10-12T04:40:24.9869931Z   "json": "<module 'json' from 'C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.5\\\\x64\\\\Lib\\\\json\\\\__init__.py'>"
2023-10-12T04:40:24.9870220Z } [virtualenv\run\session.py:53]
2023-10-12T04:40:24.9870902Z .pkg-cpython311: 16995 I add seed packages via FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv) [virtualenv\run\session.py:57]
2023-10-12T04:40:24.9876444Z .pkg-cpython311: 16995 D install pip from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\pip-23.2.1-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:24.9882234Z .pkg-cpython311: 16995 D install setuptools from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\setuptools-68.2.0-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:24.9889405Z .pkg-cpython311: 16995 D install wheel from wheel D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\virtualenv\seed\wheels\embed\wheel-0.41.2-py3-none-any.whl via CopyPipInstall [virtualenv\seed\embed\via_app_data\via_app_data.py:49]
2023-10-12T04:40:24.9911561Z .pkg-cpython311: 16995 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\pip [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:24.9925252Z .pkg-cpython311: 16995 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\distutils-precedence.pth to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\distutils-precedence.pth [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:24.9929503Z .pkg-cpython311: 16995 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\pkg_resources to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\pkg_resources [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:24.9942349Z .pkg-cpython311: 16995 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\wheel [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.0210163Z .pkg-cpython311: 17026 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel-0.41.2.dist-info to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\wheel-0.41.2.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.0275516Z .pkg-cpython311: 17026 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\wheel-0.41.2-py3-none-any\wheel-0.41.2.virtualenv to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\wheel-0.41.2.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.0332200Z .pkg-cpython311: 17041 D generated console scripts wheel3.11.exe wheel.exe wheel-3.11.exe wheel3.exe [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:25.0358467Z .pkg-cpython311: 17041 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\setuptools [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.1513510Z .pkg-cpython311: 17151 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools-68.2.0.dist-info to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\setuptools-68.2.0.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.1566882Z .pkg-cpython311: 17166 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\setuptools-68.2.0.virtualenv to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\setuptools-68.2.0.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.1572042Z .pkg-cpython311: 17166 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\setuptools-68.2.0-py3-none-any\_distutils_hack to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\_distutils_hack [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.1593595Z .pkg-cpython311: 17166 D generated console scripts  [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:25.3005758Z .pkg-cpython311: 17307 D copy directory C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip-23.2.1.dist-info to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\pip-23.2.1.dist-info [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.3042887Z .pkg-cpython311: 17307 D copy C:\Users\VssAdministrator\AppData\Local\pypa\virtualenv\wheel\3.11\image\1\CopyPipInstall\pip-23.2.1-py3-none-any\pip-23.2.1.virtualenv to D:\a\1\s\.tox\.pkg-cpython311\Lib\site-packages\pip-23.2.1.virtualenv [virtualenv\util\path\_sync.py:40]
2023-10-12T04:40:25.3072785Z .pkg-cpython311: 17307 D generated console scripts pip-3.11.exe pip.exe pip3.exe pip3.11.exe [virtualenv\seed\embed\via_app_data\pip_install\base.py:43]
2023-10-12T04:40:25.3074415Z .pkg-cpython311: 17307 I add activators for Bash, Batch, Fish, Nushell, PowerShell, Python [virtualenv\run\session.py:63]
2023-10-12T04:40:25.3108118Z .pkg-cpython311: 17323 D write D:\a\1\s\.tox\.pkg-cpython311\pyvenv.cfg [virtualenv\create\pyenv_cfg.py:32]
2023-10-12T04:40:25.3108754Z .pkg-cpython311: 17323 D 	home = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3109354Z .pkg-cpython311: 17323 D 	implementation = CPython [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3109962Z .pkg-cpython311: 17323 D 	version_info = 3.11.5.final.0 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3110540Z .pkg-cpython311: 17323 D 	virtualenv = 20.24.5 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3111152Z .pkg-cpython311: 17323 D 	include-system-site-packages = false [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3111737Z .pkg-cpython311: 17323 D 	base-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3112328Z .pkg-cpython311: 17323 D 	base-exec-prefix = C:\hostedtoolcache\windows\Python\3.11.5\x64 [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3112975Z .pkg-cpython311: 17323 D 	base-executable = C:\hostedtoolcache\windows\Python\3.11.5\x64\python.exe [virtualenv\create\pyenv_cfg.py:36]
2023-10-12T04:40:25.3136288Z .pkg-cpython311: 17323 W install_requires> python -I -m pip install nuitka>=1.7.7 packaging poetry-core>=1.0.0 [tox\tox_env\api.py:427]
2023-10-12T04:40:31.3219437Z Collecting nuitka>=1.7.7
2023-10-12T04:40:31.3378235Z   Using cached Nuitka-1.8.4.tar.gz (3.6 MB)
2023-10-12T04:40:32.9787721Z   Installing build dependencies: started
2023-10-12T04:40:35.9807466Z   Installing build dependencies: finished with status 'done'
2023-10-12T04:40:35.9808408Z   Getting requirements to build wheel: started
2023-10-12T04:40:37.1049947Z   Getting requirements to build wheel: finished with status 'done'
2023-10-12T04:40:37.1050749Z   Preparing metadata (pyproject.toml): started
2023-10-12T04:40:37.7930814Z   Preparing metadata (pyproject.toml): finished with status 'done'
2023-10-12T04:40:37.9338119Z Collecting packaging
2023-10-12T04:40:37.9339570Z   Obtaining dependency information for packaging from https://files.pythonhosted.org/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl.metadata
2023-10-12T04:40:37.9340460Z   Using cached packaging-23.2-py3-none-any.whl.metadata (3.2 kB)
2023-10-12T04:40:37.9809974Z Collecting poetry-core>=1.0.0
2023-10-12T04:40:37.9811184Z   Obtaining dependency information for poetry-core>=1.0.0 from https://files.pythonhosted.org/packages/bf/d4/ce72ac247f414d15ff046f0926b76eb42bd743e83c1df28e856f328e3db1/poetry_core-1.7.0-py3-none-any.whl.metadata
2023-10-12T04:40:37.9812062Z   Using cached poetry_core-1.7.0-py3-none-any.whl.metadata (3.4 kB)
2023-10-12T04:40:38.0118282Z Collecting ordered-set>=4.1.0 (from nuitka>=1.7.7)
2023-10-12T04:40:38.0119102Z   Using cached ordered_set-4.1.0-py3-none-any.whl (7.6 kB)
2023-10-12T04:40:38.1057589Z Collecting zstandard>=0.15 (from nuitka>=1.7.7)
2023-10-12T04:40:38.3243294Z   Downloading zstandard-0.21.0-cp311-cp311-win_amd64.whl (511 kB)
2023-10-12T04:40:38.5432126Z      -------------------------------------- 511.3/511.3 kB 2.3 MB/s eta 0:00:00
2023-10-12T04:40:38.5589441Z Using cached packaging-23.2-py3-none-any.whl (53 kB)
2023-10-12T04:40:38.5590243Z Using cached poetry_core-1.7.0-py3-none-any.whl (426 kB)
2023-10-12T04:40:38.6059098Z Building wheels for collected packages: nuitka
2023-10-12T04:40:38.6059888Z   Building wheel for nuitka (pyproject.toml): started
2023-10-12T04:40:42.1092546Z   Building wheel for nuitka (pyproject.toml): finished with status 'done'
2023-10-12T04:40:42.1247045Z   Created wheel for nuitka: filename=Nuitka-1.8.4-cp311-cp311-win_amd64.whl size=2942699 sha256=108ef1f94e06a98b4dab619e9a059889a122f999dc093330527b603f46b58f01
2023-10-12T04:40:42.1247739Z   Stored in directory: c:\users\vssadministrator\appdata\local\pip\cache\wheels\36\53\94\38f01e63c026d13c373a4fc793a0e7cd1009aaf5e0fa6ab6e8
2023-10-12T04:40:42.1403796Z Successfully built nuitka
2023-10-12T04:40:42.2191077Z Installing collected packages: zstandard, poetry-core, packaging, ordered-set, nuitka
2023-10-12T04:40:45.1258920Z Successfully installed nuitka-1.8.4 ordered-set-4.1.0 packaging-23.2 poetry-core-1.7.0 zstandard-0.21.0
2023-10-12T04:40:45.9083750Z .pkg-cpython311: 37921 I exit 0 (20.59 seconds) D:\a\1\s> python -I -m pip install nuitka>=1.7.7 packaging poetry-core>=1.0.0 pid=5960 [tox\execute\api.py:279]
2023-10-12T04:40:45.9099954Z .pkg-cpython311: 37921 W _optional_hooks> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api [tox\tox_env\api.py:427]
2023-10-12T04:40:46.0637152Z Backend: run command _optional_hooks with args {}
2023-10-12T04:40:46.0639494Z Backend: Wrote response {'return': {'get_requires_for_build_sdist': True, 'prepare_metadata_for_build_wheel': True, 'get_requires_for_build_wheel': True, 'build_editable': True, 'get_requires_for_build_editable': True, 'prepare_metadata_for_build_editable': True}} to C:\Users\VSSADM~1\AppData\Local\Temp\pep517__optional_hooks-5zz_4c47.json
2023-10-12T04:40:46.0801215Z .pkg-cpython311: 38093 I exit None (0.17 seconds) D:\a\1\s> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api pid=2600 [tox\execute\api.py:279]
2023-10-12T04:40:46.0813263Z .pkg-cpython311: 38093 W get_requires_for_build_wheel> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api [tox\tox_env\api.py:427]
2023-10-12T04:40:46.0946405Z Backend: run command get_requires_for_build_wheel with args {'config_settings': None}
2023-10-12T04:40:46.0947275Z Backend: Wrote response {'return': []} to C:\Users\VSSADM~1\AppData\Local\Temp\pep517_get_requires_for_build_wheel-cvq9a9zg.json
2023-10-12T04:40:46.0963321Z .pkg-cpython311: 38108 I exit None (0.02 seconds) D:\a\1\s> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api pid=2600 [tox\execute\api.py:279]
2023-10-12T04:40:46.0983801Z .pkg-cpython311: 38108 W build_wheel> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api [tox\tox_env\api.py:427]
2023-10-12T04:40:46.7355954Z Nuitka-Options:INFO: Used command line options: --module NuitkaTestLib --include-package=NuitkaTestLib --disable-ccache
2023-10-12T04:40:47.5957713Z Nuitka:INFO: Starting Python compilation with Nuitka '1.8.4' on Python '3.11' commercial grade 'not installed'.
2023-10-12T04:40:49.3153441Z Nuitka:INFO: Completed Python level compilation and optimization.
2023-10-12T04:40:49.3154280Z Nuitka:INFO: Generating source code for C backend compiler.
2023-10-12T04:40:50.3952751Z Nuitka:INFO: Running data composer tool for optimal constant value handling.
2023-10-12T04:40:50.5511203Z Nuitka:INFO: Running C compilation via Scons.
2023-10-12T04:40:52.3965020Z Nuitka-Scons:INFO: Backend C compiler: cl (cl 14.3).
2023-10-12T04:41:01.5411023Z Nuitka-Scons:INFO: Backend linking program with 14 files (no progress information available for this stage).
2023-10-12T04:41:13.1816917Z Nuitka:WARNING: The compilation result is hidden by package directory 'NuitkaTestLib'. Importing will not use compiled code while it exists.
2023-10-12T04:41:13.1817568Z Nuitka:INFO: Keeping build directory 'NuitkaTestLib.build'.
2023-10-12T04:41:13.1818591Z Nuitka:INFO: Successfully created 'NuitkaTestLib.cp311-win_amd64.pyd'.
2023-10-12T04:41:13.3213243Z The system cannot find the path specified.
2023-10-12T04:41:13.4619133Z Backend: run command build_wheel with args {'wheel_directory': 'D:\\a\\1\\s\\.tox\\.pkg-cpython311\\dist', 'config_settings': None, 'metadata_directory': None}
2023-10-12T04:41:13.4619847Z Backend: Wrote response {'return': 'tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl'} to C:\Users\VSSADM~1\AppData\Local\Temp\pep517_build_wheel-ra_2qvua.json
2023-10-12T04:41:13.4785108Z .pkg-cpython311: 65491 I exit None (27.39 seconds) D:\a\1\s> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api pid=2600 [tox\execute\api.py:279]
2023-10-12T04:41:13.4872759Z .pkg-cpython311: 65491 D package .tmp\package\1\tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl links to .pkg-cpython311\dist\tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl (D:\a\1\s\.tox) [tox\util\file_view.py:39]
2023-10-12T04:41:13.4879859Z py311-x86: 65491 W install_package_deps> python -I -m pip install grpcio-tools<2.0.0,>=1.46.3 grpcio<2.0.0,>=1.46.3 pydantic<2.0.0,>=1.10.5 "pywin32<304,>=303; sys_platform == \"win32\"" robotframework>=4.1.3 [tox\tox_env\api.py:427]
2023-10-12T04:41:15.7445240Z Collecting grpcio-tools<2.0.0,>=1.46.3
2023-10-12T04:41:15.7446458Z   Obtaining dependency information for grpcio-tools<2.0.0,>=1.46.3 from https://files.pythonhosted.org/packages/b3/f5/8b8e9f3445c161d29c5f1cc69c55f9aa8833e9c980581da0b4f3b9f9e479/grpcio_tools-1.59.0-cp311-cp311-win32.whl.metadata
2023-10-12T04:41:16.0105153Z   Downloading grpcio_tools-1.59.0-cp311-cp311-win32.whl.metadata (6.4 kB)
2023-10-12T04:41:16.7142139Z Collecting grpcio<2.0.0,>=1.46.3
2023-10-12T04:41:16.7143113Z   Obtaining dependency information for grpcio<2.0.0,>=1.46.3 from https://files.pythonhosted.org/packages/f5/d7/0fc1b1cc3cce048f95a00c9f309ad24555d43eb0c7d728a8150c98e1ee4a/grpcio-1.59.0-cp311-cp311-win32.whl.metadata
2023-10-12T04:41:16.7291884Z   Downloading grpcio-1.59.0-cp311-cp311-win32.whl.metadata (4.2 kB)
2023-10-12T04:41:16.9168857Z Collecting pydantic<2.0.0,>=1.10.5
2023-10-12T04:41:16.9169694Z   Obtaining dependency information for pydantic<2.0.0,>=1.10.5 from https://files.pythonhosted.org/packages/39/9f/ab6d19c5d3fccc1e3e0d835ac773031388802b31d93937daf878465c2ecf/pydantic-1.10.13-py3-none-any.whl.metadata
2023-10-12T04:41:16.9324269Z   Downloading pydantic-1.10.13-py3-none-any.whl.metadata (149 kB)
2023-10-12T04:41:17.4791337Z      ------------------------------------ 149.6/149.6 kB 893.2 kB/s eta 0:00:00
2023-10-12T04:41:17.4797059Z Collecting pywin32<304,>=303
2023-10-12T04:41:17.4797480Z   Downloading pywin32-303-cp311-cp311-win32.whl (8.4 MB)
2023-10-12T04:41:17.4797830Z      ---------------------------------------- 8.4/8.4 MB 35.8 MB/s eta 0:00:00
2023-10-12T04:41:17.5263100Z Collecting robotframework>=4.1.3
2023-10-12T04:41:17.5263995Z   Obtaining dependency information for robotframework>=4.1.3 from https://files.pythonhosted.org/packages/b5/f0/3338803e955926c7826cfe6738ed99db1f76c3a86defca2c33228b12119a/robotframework-6.1.1-py3-none-any.whl.metadata
2023-10-12T04:41:17.5887983Z   Downloading robotframework-6.1.1-py3-none-any.whl.metadata (7.5 kB)
2023-10-12T04:41:17.8548236Z Collecting protobuf<5.0dev,>=4.21.6 (from grpcio-tools<2.0.0,>=1.46.3)
2023-10-12T04:41:17.8549563Z   Obtaining dependency information for protobuf<5.0dev,>=4.21.6 from https://files.pythonhosted.org/packages/00/0f/3dc2f86e9c3d6e73c56d915a3563ecc96ebee8144fb39614f0d6c1fb023d/protobuf-4.24.4-cp310-abi3-win32.whl.metadata
2023-10-12T04:41:17.8703763Z   Downloading protobuf-4.24.4-cp310-abi3-win32.whl.metadata (540 bytes)
2023-10-12T04:41:17.8859663Z Requirement already satisfied: setuptools in d:\a\1\s\.tox\py311-x86\lib\site-packages (from grpcio-tools<2.0.0,>=1.46.3) (68.2.0)
2023-10-12T04:41:17.9172556Z Collecting typing-extensions>=4.2.0 (from pydantic<2.0.0,>=1.10.5)
2023-10-12T04:41:17.9173375Z   Obtaining dependency information for typing-extensions>=4.2.0 from https://files.pythonhosted.org/packages/24/21/7d397a4b7934ff4028987914ac1044d3b7d52712f30e2ac7a2ae5bc86dd0/typing_extensions-4.8.0-py3-none-any.whl.metadata
2023-10-12T04:41:17.9328925Z   Downloading typing_extensions-4.8.0-py3-none-any.whl.metadata (3.0 kB)
2023-10-12T04:41:18.0110438Z Downloading grpcio_tools-1.59.0-cp311-cp311-win32.whl (903 kB)
2023-10-12T04:41:18.0581132Z    --------------------------------------- 904.0/904.0 kB 28.8 MB/s eta 0:00:00
2023-10-12T04:41:18.0581872Z Downloading grpcio-1.59.0-cp311-cp311-win32.whl (3.1 MB)
2023-10-12T04:41:18.1517565Z    ---------------------------------------- 3.1/3.1 MB 32.7 MB/s eta 0:00:00
2023-10-12T04:41:18.1672166Z Downloading pydantic-1.10.13-py3-none-any.whl (158 kB)
2023-10-12T04:41:18.1986414Z    ---------------------------------------- 158.6/158.6 kB 9.3 MB/s eta 0:00:00
2023-10-12T04:41:18.1987258Z Downloading robotframework-6.1.1-py3-none-any.whl (699 kB)
2023-10-12T04:41:18.2297524Z    --------------------------------------- 699.1/699.1 kB 22.2 MB/s eta 0:00:00
2023-10-12T04:41:18.2610939Z Downloading protobuf-4.24.4-cp310-abi3-win32.whl (409 kB)
2023-10-12T04:41:18.2921643Z    --------------------------------------- 410.0/410.0 kB 12.9 MB/s eta 0:00:00
2023-10-12T04:41:18.2922034Z Downloading typing_extensions-4.8.0-py3-none-any.whl (31 kB)
2023-10-12T04:41:18.5579581Z Installing collected packages: pywin32, typing-extensions, robotframework, protobuf, grpcio, pydantic, grpcio-tools
2023-10-12T04:41:21.7001499Z Successfully installed grpcio-1.59.0 grpcio-tools-1.59.0 protobuf-4.24.4 pydantic-1.10.13 pywin32-303 robotframework-6.1.1 typing-extensions-4.8.0
2023-10-12T04:41:21.8573408Z py311-x86: 73870 I exit 0 (8.38 seconds) D:\a\1\s> python -I -m pip install grpcio-tools<2.0.0,>=1.46.3 grpcio<2.0.0,>=1.46.3 pydantic<2.0.0,>=1.10.5 "pywin32<304,>=303; sys_platform == \"win32\"" robotframework>=4.1.3 pid=3240 [tox\execute\api.py:279]
2023-10-12T04:41:21.8580432Z py311-x86: 73870 W install_package> python -I -m pip install --force-reinstall --no-deps D:\a\1\s\.tox\.tmp\package\1\tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl [tox\tox_env\api.py:427]
2023-10-12T04:41:23.0290719Z ERROR: tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl is not a supported wheel on this platform.
2023-10-12T04:41:23.1074911Z py311-x86: 75120 C exit 1 (1.23 seconds) D:\a\1\s> python -I -m pip install --force-reinstall --no-deps D:\a\1\s\.tox\.tmp\package\1\tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl pid=6264 [tox\execute\api.py:279]
2023-10-12T04:41:23.1112119Z .pkg-cpython311: 75120 W _exit> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api [tox\tox_env\api.py:427]
2023-10-12T04:41:23.1235980Z Backend: run command _exit with args {}
2023-10-12T04:41:23.1237278Z Backend: Wrote response {'return': 0} to C:\Users\VSSADM~1\AppData\Local\Temp\pep517__exit-bqlq_xaw.json
2023-10-12T04:41:23.1241693Z .pkg-cpython311: 75136 I exit None (0.02 seconds) D:\a\1\s> python D:\a\1\.poetry\virtualenvs\tox-reproduce-oJyN_iQ9-py3.8\lib\site-packages\pyproject_api\_backend.py True poetry.core.masonry.api pid=2600 [tox\execute\api.py:279]
2023-10-12T04:41:23.1442043Z .pkg-cpython311: 75152 D delete package D:\a\1\s\.tox\.tmp\package\1\tox_reproduce-1.5.0.10.dev55101756-cp311-cp311-win_amd64.whl [tox\tox_env\python\virtual_env\package\pyproject.py:206]
2023-10-12T04:41:23.1465161Z   py311-x86: FAIL code 1 (71.14 seconds)
2023-10-12T04:41:23.1465488Z   evaluation failed :( (74.99 seconds)
2023-10-12T04:41:23.3078392Z ##[error]Cmd.exe exited with code '1'.
2023-10-12T04:41:23.3398175Z ##[section]Finishing: Run tox

Minimal example

[tox]
envlist = py{311}-{x86}
isolated_build = True

[testenv]
package = wheel

basepython =
    py311-x86: py3.11-32

deps = 
    pytest
commands =
    pytest
    
@gaborbernat
Copy link
Member

PR welcome.

@gaborbernat gaborbernat added help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted. enhancement labels Oct 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted.
Projects
None yet
Development

No branches or pull requests

2 participants