-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Description
🔄 Template Sync Required
Changes from the upstream vscode-python-tools-extension-template have not yet been incorporated into this repository.
Source PR
- Exclude
.dist-infodirectories from extension package vscode-python-tools-extension-template#215 — Exclude.dist-infodirectories from extension package
Summary
The template added a .vscodeignore entry to exclude .dist-info metadata directories under bundled/libs/ from the packaged extension. Without this, dist-info directories (metadata created by pip) are inadvertently bundled into the VSIX, increasing package size unnecessarily.
Files with missing changes
.vscodeignore: The entrybundled/libs/*.dist-info/**is absent. The current file already hasbundled/libs/bin/**but is missing the dist-info exclusion line.
Suggested fix
bundled/libs/bin/**
+bundled/libs/*.dist-info/**
noxfile.py🤖 This issue was auto-generated by the extension-template-sync workflow.
Generated by Extension Template Sync
Reactions are currently unavailable