This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Support --all-extras
#5
Comments
May we have a sample repository/project? we could run Some test: (project-one-py3.10) % cat pyproject.toml
[tool.poetry]
name = "project-one"
version = "0.1.0"
description = ""
authors = ["YEUNG King On <koyeung@gmail.com>"]
readme = "README.md"
packages = [{include = "project_one"}]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.1"
httpx = { version = "^0.23.1", optional = true }
[tool.poetry.extras]
async = ["httpx"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api" Then
It seems |
Wow, I made a wrong conclusion after inspecting this package source code trying to find in the code how "extras" are handled on your side. I really did not expect that this plugin scans all "extras" by default. Sorry to bother you. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi! I came from here pypa/pip-audit#84 (comment)
Is scanning all optional extras supported? Are there any plans to support scanning all extras?
Example:
The text was updated successfully, but these errors were encountered: