Updating to ta-lib-python 0.7.0 seems to still use the underlying ta-lib 0.6.4.
Upgrade to latest TA-Lib upstream C library v0.7.1 release
from the Release page for ... the below however seems to disproof this (or reports a wrong version).
Reproduction:
mkdir /tmp/ta-lib-tests
cd /tmp/ta-lib-tests
uv venv
. .venv/bin/activate
uv pip install ta-lib==0.7.0
python -c "import talib; print(talib.__version__);print(talib.__ta_version__)"
output:
❯ python -c "import talib; print(talib.__version__);print(talib.__ta_version__)"
0.7.0
b'0.6.4 (Jul 3 2026 22:58:17)'
This might be a missing version statement somewhere (assuming the new c library is still linked) - but it's still kindof confusing ...
Updating to ta-lib-python 0.7.0 seems to still use the underlying ta-lib 0.6.4.
from the Release page for ... the below however seems to disproof this (or reports a wrong version).
Reproduction:
output:
This might be a missing version statement somewhere (assuming the new c library is still linked) - but it's still kindof confusing ...