Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
746 views
in Technique[技术] by (71.8m points)

pip - Checking python package age in CI

Is there a tool which does not only verify if you are on the lastest version of a python package, but also how old that "lastest" version actually is? The use case is simply abandonware packages which got replaced by forks (Example: flask-security being dead and replaced by flask-security-too ... which actually is relevant to application security).

All the tools I've found only verify that you use the latest package version, which is not what I'm looking for.

Ideally it should be able to easily fail a CI build if an issue is found (i.e. ability to define limits instead of just outputting text) as well as have an ignore-list.

Basically something where I'd have a call like sometool requirements.txt -max-age=365 -max-revisions=10 -max-latest-age=730 and it highlights all packages that are either more than 10 revisions behind, where my revision is over a year behind latest, or where the latest is released over 2 years ago.

question from:https://stackoverflow.com/questions/65919459/checking-python-package-age-in-ci

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...