Skip to Content

Technology Blog

Technology Blog

Tag – Poetry

Upgrading Django with AI

Django 3.2 reaches its end of life in April 2024.  We've been busy upgrading all of our sites to Django 4.2, the current LTS.  As part of this upgrade cycle, we've begun leaning on artificial intelligence tools to see if we could decrease the time it takes for the upgrade.  Happy to report we've seen a significant time savings.

Implementing dependency management with Python Poetry

One of the biggest issues with Python (our preferred development language) is dependency management.  Any individual deployment can result in minor differences in the versions of the files and libraries which make up the application.  And these minor variations introduce uncertainty and randomness into our deployment process. So, we've investigated…

Back