-
Notifications
You must be signed in to change notification settings - Fork 146
Closed
Labels
bugSomething isn't workingSomething isn't workingdependenciesPull requests that update a dependency filePull requests that update a dependency file
Description
Description
after f627d2d
The setuptools requirement in pyprojec.toml got inconsistent, setuptools has >=48.0.0
requirement while the errors module got updated relatively recently in setuptools
If any package pins setuptools below the required version, pymc import breaks.
I think we should revert f627d2d and import CompileError from distutils as before
I use this hack so far
from distutils.errors import CompileError
import setuptools.errors
setuptools.errors.CompileError = CompileError
import pymc as pm
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdependenciesPull requests that update a dependency filePull requests that update a dependency file