How can I subscribe to updates of a package on PyPI?

前端 未结 6 1664
广开言路
广开言路 2020-12-29 05:18

I would like to be notified every time a new version of Virtualenv is released on PyPI, preferably by email or by RSS feed. Is this possible?

6条回答
  •  一生所求
    2020-12-29 06:16

    If you are interested in this to keep your installation up to date, you can use pip (as suggested on Super User):

    $ pip list --outdated
    pyflakes (1.2.3) - Latest: 1.3.0 [wheel]
    

提交回复
热议问题