Backtrader versioning reported by pip
-
Minor issue.... but I noticed that the version of backtrader reported in pip is still showing as 1.9.33.116 even though I have been updating regularly.
Below you can see I am downloading 1.9.37.116 but once completed, it says I have install 1.9.33.116
Downloading backtrader-1.9.37.116-py2.py3-none-any.whl (367kB) 100% |████████████████████████████████| 368kB 1.4MB/s Installing collected packages: backtrader Successfully installed backtrader-1.9.33.116
This is what is reported in pip
pip3 list | grep backtrader backtrader (1.9.33.116)
And the this is what is in the site packages.
ls ~/.local/lib/python3.5/site-packages/backtrader backtrader/ backtrader-1.9.33.116.dist-info/ backtrader-1.9.36.116.dist-info/ backtrader-1.9.27.105.dist-info/ backtrader-1.9.35.116.dist-info/ backtrader-1.9.37.116.dist-info/
Perhaps some metadata for pip needs updating?
-
The process is automated and all tags are taken from
backtrader.__version__
This is the pypi project page: https://pypi.python.org/pypi/backtrader/
There you can see that pypi knows it's version
1.9.37.116
And imgshields which generates the badges also reads the information from
pypi
and gets1.9.37.116
. The link: https://img.shields.io/pypi/v/backtrader.svg -
Interesting...so must be something at my end then.