), converter=None, kw_only=False, inherited=False, on_setattr=None, alias='t')\n```\n\nBefore Python 3.14, `T`'s definition would only run if you used a string annotation or `from __future__ import annotations` (which if used with 3.14, the above code runs fine), but with the new annotations behavior the class definition runs fine and this error appears. This is actually issue for dataclasses too, as I get the same error with them.\n\nI'm not sure if this is fixable, but decided to report it, because it catches you by surprise","issue_title":"attrs doesn't recognize ClassVar if not imported in Python 3.14","protected_globs":["tests/test_annotations.py"],"regression_command":["python","-m","pytest","-q","--hypothesis-seed=0","tests"],"repository":"python-attrs/attrs","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.12.1-python3.14-trixie-slim","bootstrap_command":["uv","pip","install","--python","/opt/venv/bin/python","--only-binary",":all:","hatchling==1.27.0","hatch-vcs==0.5.0","hatch-fancy-pypi-readme==25.1.0","setuptools-scm==9.2.0","editables==0.5"],"environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","PYTHONPATH=/workspace/repo/src","PYTHONDONTWRITEBYTECODE=1","PYTHONHASHSEED=0","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","UV_OFFLINE=1","SETUPTOOLS_SCM_PRETEND_VERSION_FOR_ATTRS=0.0.0","LANG=C.UTF-8","LC_ALL=C.UTF-8","TZ=UTC","TERM=dumb","NO_COLOR=1","PYTHON_COLORS=0"],"schema_version":1,"sync_command":["uv","sync","--frozen","--no-default-groups","--group","tests","--no-install-project"]},"setup_command":["/bin/sh","-ec","mkdir -p \"$HOME\" \"$XDG_CACHE_HOME\" \"$UV_CACHE_DIR\" && uv pip install --offline --python /opt/venv/bin/python --no-deps --no-build-isolation --editable ."],"source_archive":"sources/attrs-1575.tar","source_sha256":"64c20a8d14830dcd0a069d65b6bb86ca61251a981da11be7209917ce54bd1830","timeout_s":900,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","tests/test_checkers.py::TestProtocol::test_class_against_protocol_ignores_instance_attributes"],"hidden_test_patch":"hidden-tests/typeguard-499.patch","hidden_test_sha256":"89bba7c95533fbb25ba5d68804f6734e9b48ec2bae3e7352aca6e43fd0eba1d2","id":"typeguard-499","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"### Things to check first\n\n- [X] I have searched the existing issues and didn't find my bug already reported there\n\n- [X] I have checked that my bug is still present in the latest release\n\n\n### Typeguard version\n\n4.4.1\n\n### Python version\n\n3.13.0\n\n### What happened?\n\nI think https://github.com/agronholm/typeguard/issues/498 is not fully fixed yet.\n\n### How can we reproduce the bug?\n\n`bug.py`\r\n```python\r\nfrom typeguard import install_import_hook\r\n\r\ninstall_import_hook()\r\n\r\nfrom code import Class, function_of_instance, function_of_type\r\n\r\n# This works:\r\nfunction_of_instance(Class())\r\n\r\n# This does not:\r\nfunction_of_type(Class)\r\n```\r\n\r\n`code.py`\r\n```python\r\nfrom typing import Protocol\r\n\r\nclass Proto(Protocol):\r\n foo: str\r\n\r\nclass Class(Proto):\r\n def __init__(self):\r\n self.foo = \"bar\"\r\n\r\ndef function_of_instance(instance: Proto): ...\r\n\r\ndef function_of_type(type_: type[Proto]): ...\r\n```","issue_title":"Class is not compatible with protocol because it has no attribute named ...","protected_globs":["tests/test_checkers.py"],"regression_command":["python","-m","pytest","-q","tests"],"repository":"agronholm/typeguard","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.12.1-python3.14-trixie-slim","bootstrap_command":["uv","pip","install","--python","/opt/venv/bin/python","--only-binary",":all:","setuptools==80.9.0","setuptools-scm==9.2.0","wheel==0.45.1"],"environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","PYTHONPATH=/workspace/repo/src","PYTHONDONTWRITEBYTECODE=1","PYTHONHASHSEED=0","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","UV_OFFLINE=1","SETUPTOOLS_SCM_PRETEND_VERSION_FOR_TYPEGUARD=0.0.0","LANG=C.UTF-8","LC_ALL=C.UTF-8","TZ=UTC","TERM=dumb","NO_COLOR=1","PYTHON_COLORS=0"],"schema_version":1,"sync_command":["/bin/sh","-ec","SETUPTOOLS_SCM_PRETEND_VERSION_FOR_TYPEGUARD=0.0.0 uv sync --no-default-groups --group test --no-install-project"]},"setup_command":["/bin/sh","-ec","mkdir -p \"$HOME\" \"$XDG_CACHE_HOME\" \"$UV_CACHE_DIR\" && uv pip install --offline --python /opt/venv/bin/python --no-deps --no-build-isolation --editable ."],"source_archive":"sources/typeguard-499.tar","source_sha256":"15eec682771f0af79ba05bae6a97ad7a09c27f45b4e5623261b5e430377361a7","timeout_s":900,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","-p","no:randomly","tests/processors/test_processors.py::TestCallsiteParameterAdder::test_async","tests/processors/test_processors.py::TestCallsiteParameterAdder::test_async_native_logger"],"hidden_test_patch":"hidden-tests/structlog-710.patch","hidden_test_sha256":"4888a5dc77f47dde9a751411c5c27880ce5948c5e9c8b3648b618286779c9daa","id":"structlog-710","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"This is based on @PrieJos's helpful analysis in https://github.com/hynek/structlog/issues/693#issuecomment-2629117069\n\nIn async log methods, callsite collection happens in the async logger thread which makes its thread-related information worthless:\n\n```python\n# /// script\n# dependencies = [\n# \"structlog\",\n# ]\n# ///\n\nimport asyncio\nimport logging\nimport sys\n\nimport structlog\n\nsl = structlog.get_logger()\nlogger = logging.getLogger()\n\nlogging.basicConfig(\n stream=sys.stdout,\n format=(\n \"%(process)d %(processName)s %(module)s\"\n \" %(funcName)s:%(lineno)d %(threadName)s %(taskName)s\"\n \" %(message)s\"\n ),\n datefmt=r\"%Y-%m-%dT%H:%M:%S\",\n level=logging.INFO,\n encoding=\"utf-8\",\n)\n\nstructlog.configure(\n processors=[\n structlog.processors.CallsiteParameterAdder(\n [\n structlog.processors.CallsiteParameter.PROCESS,\n structlog.processors.CallsiteParameter.PROCESS_NAME,\n structlog.processors.CallsiteParameter.MODULE,\n structlog.processors.CallsiteParameter.FILENAME,\n structlog.processors.CallsiteParameter.FUNC_NAME,\n structlog.processors.CallsiteParameter.LINENO,\n structlog.processors.CallsiteParameter.THREAD_NAME,\n ]\n ),\n structlog.processors.LogfmtRenderer(),\n ],\n)\n\n\nasync def afunc():\n await sl.ainfo(\"async\")\n logger.info(\"stdlib async\")\n\ndef func():\n sl.info(\"sync\")\n logger.info(\"stdlib sync\")\n\n\nasyncio.run(afunc())\nfunc()\n```\n\nNotably, thread name is wrong and so would be a task name as shown in #698:\n\n```\nevent=async process=55347 process_name=n/a module=t filename=t.py func_name=afunc lineno=47 thread_name=asyncio_0\n55347 MainProcess t afunc:48 MainThread Task-1 stdlib async\nevent=sync process=55347 process_name=n/a module=t filename=t.py func_name=func lineno=51 thread_name=MainThread\n55347 MainProcess t func:52 MainThread None stdlib sync\n```\n\nNot sure how to deal with this most elegantly \u2013 I feel like we'll have to pass thread/task objects into the event_dict or something?\n\nI _think_ the `process_name` is in fact correct, since `logging` just [sets it unconditionally](https://github.com/python/cpython/blob/72e5b25efb580fb1f0fdfade516be90d90822164/Lib/logging/__init__.py#L359-L371) and we get `n/a` in sync code too. Happy to be corrected, though.","issue_title":"Thread name CallsiteParameterAdder parameter doesn't work in async methods","protected_globs":["tests/processors/test_processors.py"],"regression_command":["python","-m","pytest","-q","-p","no:randomly","tests"],"repository":"hynek/structlog","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.12.1-python3.14-trixie-slim","bootstrap_command":["uv","pip","install","--python","/opt/venv/bin/python","--only-binary",":all:","hatchling==1.27.0","hatch-vcs==0.5.0","hatch-fancy-pypi-readme==25.1.0","setuptools-scm==9.2.0","editables==0.5"],"environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","PYTHONPATH=/workspace/repo/src","PYTHONDONTWRITEBYTECODE=1","PYTHONHASHSEED=0","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","UV_OFFLINE=1","SETUPTOOLS_SCM_PRETEND_VERSION_FOR_STRUCTLOG=0.0.0","LANG=C.UTF-8","LC_ALL=C.UTF-8","TZ=UTC","TERM=dumb","NO_COLOR=1","PYTHON_COLORS=0"],"schema_version":1,"sync_command":["/bin/sh","-ec","SETUPTOOLS_SCM_PRETEND_VERSION_FOR_STRUCTLOG=0.0.0 uv sync --no-default-groups --group tests --no-install-project"]},"setup_command":["/bin/sh","-ec","mkdir -p \"$HOME\" \"$XDG_CACHE_HOME\" \"$UV_CACHE_DIR\" && uv pip install --offline --python /opt/venv/bin/python --no-deps --no-build-isolation --editable ."],"source_archive":"sources/structlog-710.tar","source_sha256":"29cbfb33035b772d26d8ebae36cae0e0e30e606ee228056f2c910b9c55e396a1","timeout_s":900,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","-W","error","--cache-clear","--randomly-seed=0","-o","cache_dir=/tmp/pytest-cache","tests/snippets/jsx/test_apostrophe_text.txt"],"hidden_test_patch":"hidden-tests/pygments-2816.patch","hidden_test_sha256":"85529df235553cfc030b00769f8a10c2683d12d3eaea0713a48f4716b5be2cd9","id":"pygments-2816","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"When I attempt to highlight the following code snippet using `jsx` as the lexer in Sphinx and MyST, Sphinx returns a warning:\r\n\r\n`WARNING: Lexing literal_block (JSX code omitted) as \"jsx\" resulted in an error at token: \"'\". Retrying in relaxed mode.`\r\n\r\n````\r\n```jsx\r\nimport React from 'react';\r\n\r\nconst View = props => {\r\n return I'm the Block view component!
;\r\n};\r\n\r\nexport default View;\r\n```\r\n````\r\n\r\n[Try it on the Pygments demo](https://pygments.org/demo/?lexer=jsx&style=bw&formatter=html&code=import+React+from+%27react%27%3B%0A%0Aconst+View+%3D+props+%3D%3E+%7B%0A++return+%3Cdiv%3EI%27m+the+Block+view+component%21%3C%2Fdiv%3E%3B%0A%7D%3B%0A%0Aexport+default+View%3B%0A).\r\n\r\nFWIW, if I try `js` as the lexer, it also does not lex.\r\n\r\nSee:\r\n- https://github.com/plone/volto/issues/3038\r\n- https://github.com/plone/training/issues/347\r\n- https://github.com/fcurella/jsx-lexer/issues/15","issue_title":"WARNING: Lexing literal_block ... as \"jsx\" resulted in an error at token: \"'\". Retrying in relaxed mode.","protected_globs":["tests/snippets/jsx/test_apostrophe_text.txt"],"regression_command":["python","-m","pytest","-q","-W","error","--cache-clear","--randomly-seed=0","-o","cache_dir=/tmp/pytest-cache","tests"],"repository":"pygments/pygments","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.8.14-python3.12-bookworm","bootstrap_command":["/bin/sh","-ec","uv pip install --python /opt/venv/bin/python --only-binary=:all: 'hatchling==1.27.0' 'editables==0.5' && uv pip install --python /opt/venv/bin/python --no-deps --only-binary=:all: 'pytest==8.4.2' 'pytest-randomly==4.0.1' 'iniconfig==2.1.0' && uv pip install --python /opt/venv/bin/python --no-deps 'wcag-contrast-ratio==0.9' && uv pip freeze --python /opt/venv/bin/python > /opt/patcheval-requirements.txt"],"environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","UV_OFFLINE=1","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","PYTHONPATH=/workspace/repo","PYTHONDONTWRITEBYTECODE=1","PYTHONUNBUFFERED=1","PYTHONHASHSEED=0","PYTHON_COLORS=0","NO_COLOR=1","TERM=dumb","COLUMNS=80","LANG=C.UTF-8","LC_ALL=C.UTF-8","TZ=UTC"],"schema_version":1,"sync_command":["uv","venv","--python","/usr/local/bin/python","/opt/venv"]},"setup_command":["/bin/sh","-ec","mkdir -p \"$HOME\" \"$XDG_CACHE_HOME\" \"$UV_CACHE_DIR\" && uv pip install --offline --python /opt/venv/bin/python --no-deps --no-build-isolation --editable . && uv pip check --python /opt/venv/bin/python"],"source_archive":"sources/pygments-2816.tar","source_sha256":"ccba4fdd41fd6a2a9796292a27e62babe206910a84f1290391e824371b6e58c0","timeout_s":900,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","-W","error","--cache-clear","--randomly-seed=0","-o","cache_dir=/tmp/pytest-cache","tests/snippets/jsonnet/test_array_slice.txt"],"hidden_test_patch":"hidden-tests/pygments-2828.patch","hidden_test_sha256":"ac9e1f7355dff0ff69e30c1ea43bdb3b082a0f7b8fb0bf00b0b34ba3ac95f02d","id":"pygments-2828","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"The `::` in this snippet is highlighted as an error but it shouldn't be, it's array slice notation, just like in Python\r\n\r\n```jsonnet\r\n{\r\n local numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],\r\n even_numbers: numbers[1::2],\r\n}\r\n```\r\n\r\nhttps://pygments.org/demo/?lexer=jsonnet&style=bw&formatter=html&code=local+obj2+%3D+%7B%0A++local+numbers+%3D+%5B1%2C+2%2C+3%2C+4%2C+5%2C+6%2C+7%2C+8%2C+9%2C+10%5D%2C%0A++even_numbers%3A+numbers%5B1%3A%3A2%5D%2C%0A%7D%3B%0A\r\n\r\nYou can try it on https://jsonnet.org/learning/tutorial.html","issue_title":"Jsonnet: array slice syntax","protected_globs":["tests/snippets/jsonnet/test_array_slice.txt"],"regression_command":["python","-m","pytest","-q","-W","error","--cache-clear","--randomly-seed=0","-o","cache_dir=/tmp/pytest-cache","tests"],"repository":"pygments/pygments","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.8.14-python3.12-bookworm","bootstrap_command":["/bin/sh","-ec","uv pip install --python /opt/venv/bin/python --only-binary=:all: 'hatchling==1.27.0' 'editables==0.5' && uv pip install --python /opt/venv/bin/python --no-deps --only-binary=:all: 'pytest==8.4.2' 'pytest-randomly==4.0.1' 'iniconfig==2.1.0' && uv pip install --python /opt/venv/bin/python --no-deps 'wcag-contrast-ratio==0.9' && uv pip freeze --python /opt/venv/bin/python > /opt/patcheval-requirements.txt"],"environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","UV_OFFLINE=1","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","PYTHONPATH=/workspace/repo","PYTHONDONTWRITEBYTECODE=1","PYTHONUNBUFFERED=1","PYTHONHASHSEED=0","PYTHON_COLORS=0","NO_COLOR=1","TERM=dumb","COLUMNS=80","LANG=C.UTF-8","LC_ALL=C.UTF-8","TZ=UTC"],"schema_version":1,"sync_command":["uv","venv","--python","/usr/local/bin/python","/opt/venv"]},"setup_command":["/bin/sh","-ec","mkdir -p \"$HOME\" \"$XDG_CACHE_HOME\" \"$UV_CACHE_DIR\" && uv pip install --offline --python /opt/venv/bin/python --no-deps --no-build-isolation --editable . && uv pip check --python /opt/venv/bin/python"],"source_archive":"sources/pygments-2828.tar","source_sha256":"c9f794937fa960ed50c1c943691c030b6943a28f075e06a3e8ce70adf0ab6a20","timeout_s":900,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","-o","cache_dir=/tmp/pytest-cache","tests/test_toml_document.py::test_add_key_after_dotted_inline_table_without_ending_newline"],"hidden_test_patch":"hidden-tests/tomlkit-440.patch","hidden_test_sha256":"4f54de74b1893428d216906daa3c5d5e667b21a74d913da32cb374d6c06a9f96","id":"tomlkit-440","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"Hello,\nSorry to be opening another issue so early after the last one, but I found something else:\n\n```python\nv = tomlkit.loads(\"\"\"[x]\\na.b = {}\"\"\")\nv[\"x\"][\"c\"] = 3\nprint(tomlkit.dumps(v))\n```\n\noutput:\n```toml\n[x]\na.b = {}c = 3\n```\n\nAs you can see, there should be a new line before `c = 3`\n\nNote that this doesn't happens with either:\n- `\"\"\"[x]\\na.b = {}\\n\"\"\"`\n- `\"\"\"[x]\\na = {}\"\"\"`","issue_title":"Missing newline after inline table","protected_globs":["tests/test_toml_document.py"],"regression_command":["python","-m","pytest","-q","-o","cache_dir=/tmp/pytest-cache","tests","--ignore=tests/test_toml_tests.py"],"repository":"python-poetry/tomlkit","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.8.14-python3.12-bookworm-slim","environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","PYTHONPATH=/workspace/repo","PYTHONDONTWRITEBYTECODE=1","PYTHONUNBUFFERED=1","PYTHONHASHSEED=0","PYTEST_DISABLE_PLUGIN_AUTOLOAD=1","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","UV_OFFLINE=1","TZ=UTC","LANG=C.UTF-8","LC_ALL=C.UTF-8","TERM=dumb","NO_COLOR=1","PYTHON_COLORS=0"],"schema_version":1,"sync_command":["/bin/sh","-ec","python -m venv /opt/venv && uv pip install --python /opt/venv/bin/python --no-deps --only-binary=:all: pytest==7.4.4 iniconfig==2.0.0 packaging==24.0 pluggy==1.2.0"]},"source_archive":"sources/tomlkit-440.tar","source_sha256":"a0b40aef624c1113496e08365bc15e70796c2280b3a71df568ec74123d72fab7","timeout_s":300,"validated":true}
{"fail_to_pass_command":["python","-m","pytest","-q","-o","cache_dir=/tmp/pytest-cache","tests/test_toml_document.py::test_replace_dotted_key_with_aot_keeps_following_sibling"],"hidden_test_patch":"hidden-tests/tomlkit-542.patch","hidden_test_sha256":"483263ef19d363a1236c066b76997f78f1357daa721c28b0da098c1c79d0a054","id":"tomlkit-542","ignored_globs":[".coverage",".coverage.*",".hypothesis/**",".mypy_cache/**",".pytest_cache/**",".ruff_cache/**",".venv/**","**/.hypothesis/**","**/.mypy_cache/**","**/.pytest_cache/**","**/.ruff_cache/**","**/__pycache__/**","**/*.egg-info/**","**/*.py[cod]","__pycache__/**","*.egg-info/**","*.py[cod]","htmlcov/**"],"issue_body":"```python\n#!/usr/bin/env python3\n\nimport tomlkit\n\n\ndoc = tomlkit.parse(\"a.b = 1\\nc.d = 2\\n\")\naot = tomlkit.aot()\nt = tomlkit.table()\nt[\"x\"] = 9\naot.append(t)\ndoc[\"a\"] = aot\nprint(tomlkit.dumps(doc))\n```\nresult\n```\n[[a]]\nx = 9\nc.d = 2\n```\nin which `c.d` has wrongly been captured by the array of tables.\n\nSimilar in flavour to other recent bug reports and fixes, I expect the fix will be nearby too.","issue_title":"AoT captures too many keys","protected_globs":["tests/test_toml_document.py"],"regression_command":["python","-m","pytest","-q","-o","cache_dir=/tmp/pytest-cache","tests","--ignore=tests/test_toml_tests.py"],"repository":"python-poetry/tomlkit","runtime_recipe":{"base_image":"ghcr.io/astral-sh/uv:0.8.14-python3.12-bookworm-slim","environment":["HOME=/home/node","XDG_CACHE_HOME=/tmp/xdg-cache","UV_CACHE_DIR=/tmp/uv-cache","PYTHONPATH=/workspace/repo","PYTHONDONTWRITEBYTECODE=1","PYTHONUNBUFFERED=1","PYTHONHASHSEED=0","PYTEST_DISABLE_PLUGIN_AUTOLOAD=1","PIP_NO_INDEX=1","PIP_DISABLE_PIP_VERSION_CHECK=1","UV_OFFLINE=1","TZ=UTC","LANG=C.UTF-8","LC_ALL=C.UTF-8","TERM=dumb","NO_COLOR=1","PYTHON_COLORS=0"],"schema_version":1,"sync_command":["/bin/sh","-ec","python -m venv /opt/venv && uv pip install --python /opt/venv/bin/python --no-deps --only-binary=:all: pytest==7.4.4 iniconfig==2.0.0 packaging==24.0 pluggy==1.2.0"]},"source_archive":"sources/tomlkit-542.tar","source_sha256":"803d7046ba0b462206c5059327664b75228fd7d00e78f598a62e76e09260b329","timeout_s":300,"validated":true}