You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
PyPy jobs in the python-poetry-dependencies-caching matrix were failing due to a packaging>=26 incompatibility with PyPy's sysconfig. This pins packaging in the test pyproject.toml to <26, keeping Poetry dependency resolution compatible across all Python/PyPy versions.
PyPy compatibility fix
Added packaging = ">=22.0,<26" constraint to __tests__/data/pyproject.toml to prevent Poetry from resolving a packaging version incompatible with PyPy's sysconfig.get_config_var('EXT_SUFFIX').
Dependency security refresh
Applied npm audit fix; bumped transitive deps (fast-xml-parser, strnum, et al.) in package-lock.json.
Licensed metadata sync
Updated existing .licenses/npm/*.dep.yml entries for bumped packages.
Added new license entries for newly introduced transitive dependencies (@nodable/entities, anynum, xml-naming).
Related issue:
N/A
Check list:
Mark if documentation changes are required.
Mark if tests were added or updated to cover the changes.
CopilotAI
changed the title
Fix PyPy 3.10 poetry test failure by pinning packaging<26
Stabilize PyPy Poetry cache job and align audited dependency license metadata
Jun 12, 2026
@copilot Add the below step after setup-python step in python-poetry-dependencies-caching job in e2e-cache.yml file to ensure there is no failure on the job. Also fix the check dist job failure
@copilot Add the below step after setup-python step in python-poetry-dependencies-caching job in e2e-cache.yml file to ensure there is no failure on the job. Also fix the check dist job failure
Implemented in d640171. I added the requested Bootstrap packaging step immediately after Setup Python in the python-poetry-dependencies-caching job of /home/runner/work/setup-python/setup-python/.github/workflows/e2e-cache.yml, and also updated generated dist/ bundles to address the check-dist failure.
CopilotAI
changed the title
Stabilize PyPy Poetry cache job and align audited dependency license metadata
Fix PyPy Poetry cache failures and refresh audited dependency metadata
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
PyPy jobs in the
python-poetry-dependencies-cachingmatrix were failing due to apackaging>=26incompatibility with PyPy'ssysconfig. This pinspackagingin the testpyproject.tomlto<26, keeping Poetry dependency resolution compatible across all Python/PyPy versions.PyPy compatibility fix
packaging = ">=22.0,<26"constraint to__tests__/data/pyproject.tomlto prevent Poetry from resolving apackagingversion incompatible with PyPy'ssysconfig.get_config_var('EXT_SUFFIX').Dependency security refresh
npm audit fix; bumped transitive deps (fast-xml-parser,strnum, et al.) inpackage-lock.json.Licensed metadata sync
.licenses/npm/*.dep.ymlentries for bumped packages.@nodable/entities,anynum,xml-naming).Related issue:
N/A
Check list: