From b233246b7e5c67a0f9f19ab98c788897591b9d8a Mon Sep 17 00:00:00 2001 From: Jonathan Piche Date: Wed, 20 Nov 2024 08:22:51 -0500 Subject: [PATCH] feat: Python 3.8 EOL [DT-7320] Python 3.8 (end-of-life) This PR is offered as a courtesy; a best effort had been done using simple text search in the most commonly affected areas. It's not possible for us to analyze all python setups thoroughly. Don't hesitate to contact me (preferably through DM if you want a quicker reply!) for any questions, requests, next steps or if you need to postpone this. Overall, we searched for: - terraform runtimes - pyproject.toml - dockerfiles - github actions Your team may be forced to setup a newer local Python version in order to continue working with this repository. For those of you who would like to align with the main OS, please note that the current LTS Ubuntu 22.04 offers 3.10 and 3.11 while the subsequent version (24.10) offers 3.12 and 3.13. Additionally, if your project _requires_ running on older python versions, we recommend adding some sort of comment that explains why, and maybe explain when/how the EOL python will be phased out. https://coveord.atlassian.net/browse/DT-7320 **Please merge this pull request when approving it! Thank you!** --- README_MULTIPLE_LIBRARIES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_MULTIPLE_LIBRARIES.md b/README_MULTIPLE_LIBRARIES.md index b777501..54d14c8 100644 --- a/README_MULTIPLE_LIBRARIES.md +++ b/README_MULTIPLE_LIBRARIES.md @@ -48,7 +48,7 @@ authors = ["..."] package-mode = false # see https://python-poetry.org/docs/basic-usage/#operating-modes [tool.poetry.dependencies] -python = ">=3.8" +python = ">=3.13" local-library = { path = 'local-library/', develop = true } something-else = { path = 'lib/other/something-else/', develop = true }