Skip to content

Use of deprecated numpy.distutils

Description

The use of numpy.distutils is deprecated and will be removed in the future. It is recommended to use alternative methods to avoid potential compatibility issues.

Examples

Insecure Code

python
import numpy.distutils

Secure Code

python
import setuptools

Remediation

Replace numpy.distutils with the recommended alternative methods.

Rule Details

FieldValue
IDCODE-0219
CategoryInsecureConfig
SeverityLOW
CWECWE-676
ConfidenceHIGH
ImpactLOW
LikelihoodMEDIUM
ExploitabilityCOMPLEX
Tagsdeprecated, compatibility
OWASPN/A

References