From: Michael Orlitzky Date: Wed, 25 Feb 2026 01:57:34 +0000 (-0500) Subject: makefile: remove PYTHONPATH hack from check target X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f59d3f7f3ed57941868d215501585381106b4dff;p=sage.d.git 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. --- 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