zopefoundation / z3c.checkversions

Find newer package versions on PyPI
Other
2 stars 6 forks source link

Misses new 'zope.*' releases #7

Closed tseaver closed 8 years ago

tseaver commented 8 years ago

When updating https://github.com/zopefoundation/zopetoolkit, the bin/checkversions script finds other packages:

pip=8.1.2
setuptools=24.0.2
virtualenv=15.0.2
zc.buildout=2.5.2

But misses new releases of zope.* packages (its main purpose in life, AFAIK).

mauritsvanrees commented 8 years ago

Are you calling bin/checkversions on its own? I think then it only reports on the versions that are in the script itself, or maybe in its virtualenv or globally installed.

When I run the zopetoolkit buildout and do bin/checkversions ztk-versions.cfg I get a longer list. No zope packages, but that may be because you have updated them already:

$ bin/checkversions ztk-versions.cfg 
# Checking buildout file ztk-versions.cfg
...RuntimeWarning: You have iterated over the result of pkg_resources.parse_version....
BTrees=4.3.1
Jinja2=2.8
Paste=2.0.3
PasteScript=2.0.2
Pygments=2.1.3
Sphinx=1.4.4
WebOb=1.6.1
WebTest=2.0.21
ZConfig=3.1.0
ZEO=4.2.1
ZODB=4.4.1
argparse=1.4.0
collective.recipe.cmd=0.11
coverage=4.1
extras=1.0.0
lxml=3.6.0
mr.developer=1.34
nose=1.3.7
persistent=4.2.1
py=1.4.31
python-gettext=3.0
python-mimeparse=1.5.2
python-subunit=1.2.0
pytz=2016.4
repoze.sphinx.autointerface=0.8
setuptools=24.0.2
six=1.10.0
testtools=2.2.0
transaction=1.6.1
unittest2=1.1.0
zc.buildout=2.5.2
zc.lockfile=1.2.1
zc.recipe.egg=2.0.3
zdaemon=4.1.0

An alternative script can be the newer https://pypi.python.org/pypi/plone.versioncheck

icemac commented 8 years ago

bin/checkversions -v buildout.cfg also shows the packages where the script was not able to find a newer version. Seems that currently alle zope.* packages are up to date. Might this be correct?

tseaver commented 8 years ago

OK, my bad: I had thought that the zopetoolkit buildout wired up all the eggs in its [versions] section to be checked without passing any command-line arguments.