Closed seanv507 closed 9 months ago
in version 1.3.10, core.py lines 836-841
if include_local_code: prefix = await scan_prefix() packages, _ = partition_ignored_packages( prefix, {(k, "pip"): PackageLevelEnum.IGNORE for k in ignore_local_packages} ) packages, local_packages = partition_local_python_code_packages(prefix)
I think last line should be
packages, local_packages = partition_local_python_code_packages(packages)
otherwise the packages filtering out ignored packages is overwritten
packages
Thanks for catching and reporting this! We'll have a new version with this fix out soon.
in version 1.3.10, core.py lines 836-841
I think last line should be
packages, local_packages = partition_local_python_code_packages(packages)
otherwise the
packages
filtering out ignored packages is overwritten