TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How to track an updates to a 3party libraries?

6 pointsby svetlyak40wtabout 11 years ago
As any software developer, I use many 3-party libraries in my daily job. Mostly, they are python libraries, but I think this theme should be language agnostic.<p>In python, we could store project&#x27;s dependencies in different ways. They could be stated in the setup.py file or in pip&#x27;s requirements.txt file. Some programmers prefer to pin exact version numbers some are not. I&#x27;m belonging to the first group.<p>Although pinning exact version numbers keeps me from accidental update to a backward incompatible versions, it also keeps me from updating (and more importantly from discovering) to a bug&#x2F;security fixes, introduced in these new versions.<p>What do you use to follow 3-party libraries updates? How to solve this problem and keep on a bleeding edge?

2 comments

bjoernsabout 11 years ago
I&#x27;m a Python guy - a &#x27;pip-review&#x27; every now is what keeps me in the loop. Admittedly not very elegant but it does the job.
评论 #7420722 未加载
svetlyak40wtabout 11 years ago
So, nobody knows the solution?