Closed johnmee closed 2 years ago
Ah, here we go, never mind... scipy 1.6.1 issues. I'm taking my python in the wrong direction: the "current" release of scipy does not support python 3.10!? and has the issue addressed this in scipy v1.7+.
Solved with
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
beancount = "latest"
scipy = ">=1.8"
smart-importer = "latest"
I expect this is a peculiarity with my install environment, but... my
bean-extract
works just fine before I install this package, and fails with it, and works again when I uninstall.Not sure if anyone can be much help, but throwing it out here just in case.
The level of complexity is high given that numpy and/or scipy have binaries that need a presence. (
apt install gfortran libatlas-base-dev
).ubuntu 22.04 virtualenv and poetry asdf as well. beancount v2 a couple of personal importers.
In my pyproject.toml file, my importers are found via packages->include which is a problem?
I found some threads that seemed to blame the undefined_symbol on the version of python so I bumped it up to the current
Python 3.10.7
, but no joy.