can sublime text plugin work by (numpy)
import numpy as np
numpy
was available as python 3.3 dependency, but related repository was deleted just recently. Just yesterday related Package Control registration has therefore been removed.
As numpy
doesn’t have any dependencies, it would however be easy to re-add it for both, py33 and py38 if there was demand.
It would then be possible for plugins to request numpy library by a dependencies.json
with
{
"$schema": "sublime://packagecontrol.io/schemas/dependencies",
"*": {
"*": [
"numpy"
]
}
}