From f59d3f7f3ed57941868d215501585381106b4dff Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 24 Feb 2026 20:57:34 -0500 Subject: [PATCH] makefile: remove PYTHONPATH hack from check target Having eliminated the sitedir trickery from init.sage, one must now have PYTHONPATH properly configured before anything will work. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 96842cc..0ec696b 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ check: - PYTHONPATH="." python -m sage.doctest --long --exitfirst mjo/ + python -m sage.doctest --long --exitfirst mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete -- 2.51.0