Is your feature request related to a problem?
torch and transformers are listed as direct dependencies in pyproject.toml, but the codebase never imports them directly. They are only needed as transitive dependencies of presidio-analyzer. Pinning them explicitly adds unnecessary maintenance burden and can cause version conflicts.
Describe the solution you'd like
Remove torch and transformers from pyproject.toml and let presidio-analyzer pull them in as its own dependencies. This:
- Reduces dependency surface we maintain
- Avoids version pinning conflicts with presidio's requirements
- Keeps pyproject.toml focused on packages we actually import
Is your feature request related to a problem?
torch and transformers are listed as direct dependencies in pyproject.toml, but the codebase never imports them directly. They are only needed as transitive dependencies of presidio-analyzer. Pinning them explicitly adds unnecessary maintenance burden and can cause version conflicts.
Describe the solution you'd like
Remove torch and transformers from pyproject.toml and let presidio-analyzer pull them in as its own dependencies. This: