From ff31427687f7e0dee00d9ee6e12975d1048dff53 Mon Sep 17 00:00:00 2001 From: Alexander Graul Date: Wed, 23 Feb 2022 15:05:00 +0100 Subject: [PATCH] tweak(python): use pyproject.toml as project file With PEP 518, Python defined a general Python project configuration format that is called pyproject.toml --- modules/lang/python/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/python/config.el b/modules/lang/python/config.el index e7c3a2908..1e993f3cd 100644 --- a/modules/lang/python/config.el +++ b/modules/lang/python/config.el @@ -7,7 +7,7 @@ "Command to initialize the jupyter REPL for `+python/open-jupyter-repl'.") (after! projectile - (pushnew! projectile-project-root-files "setup.py" "requirements.txt")) + (pushnew! projectile-project-root-files "pyproject.toml" "requirements.txt" "setup.py")) ;;