9 Making a package evergreen

 

This chapter covers

  • Choosing a versioning strategy for your package releases
  • Automating dependency updates with GitHub’s Dependabot
  • Setting test coverage thresholds
  • Upgrading your Python syntax using pyupgrade
  • Reducing rework using pre-commit hooks

In previous chapters, you successfully built a package locally and then published it so developers at all your client companies could benefit from all your hard work. You might imagine at this point that you’ve done most of the work, but releasing a project is often just the beginning for many developers. After people start using your package, new and broken use cases start to surface. A popular open source project might turn into a years-long endeavor.

Even when the dust settles and a project reaches a stable level of maturity, the occasional update or bug fix comes along. If none of the maintainers have cracked the project open in a while, these moments can prove costly. If the ecosystem of dependencies and tools around the project has evolved significantly since the last update, what might have been a simple one-line change can balloon into a days-long excursion to update dependencies to compatible versions and get the project sputtering along again. In the worst cases, this happens in the face of a security vulnerability; the high stress and high stakes won’t do you any favors in making careful updates.

9.1 Choosing a package-versioning strategy

 
 
 

9.1.1 Direct and indirect dependencies

 
 

9.1.2 Python dependency specifiers and dependency hell

 
 
 
 

9.1.3 Semantic versioning and calendar versioning

 
 
 
 

9.2 Getting the most out of GitHub

 
 

9.2.1 The GitHub dependency graph

 
 

9.2.2 Mitigating security vulnerabilities with Dependabot

 
 
 

9.3 Thresholding test coverage

 
 
 

9.4 Updating Python syntax using pyupgrade

 

9.5 Reducing rework using pre-commit hooks

 
 
 

Answers to exercises

 
 
 

Summary

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage