add setuptools to bayes extra
httpstan imports pkg_resources at runtime, which modern pip/venvs no longer bootstrap by default, breaking the bayes extra in fresh CI envs.
This commit is contained in:
parent
6e83bbef67
commit
0965d99135
2
setup.py
2
setup.py
|
|
@ -130,7 +130,7 @@ setup(
|
|||
# Similar to `install_requires` above, these must be valid existing
|
||||
# projects.
|
||||
extras_require={ # Optional
|
||||
'bayes': ['jax', 'jaxlib', 'numpyro', 'pystan'],
|
||||
'bayes': ['jax', 'jaxlib', 'numpyro', 'pystan', 'setuptools'],
|
||||
'neural': ['torch'],
|
||||
'tests': ['certifi'],
|
||||
'docs' : ['sphinx-rtd-theme', 'myst-parser'],
|
||||
|
|
|
|||
Loading…
Reference in New Issue