]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
makefile: remove PYTHONPATH hack from check target
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 25 Feb 2026 01:57:34 +0000 (20:57 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 25 Feb 2026 01:57:34 +0000 (20:57 -0500)
Having eliminated the sitedir trickery from init.sage, one must now
have PYTHONPATH properly configured before anything will work.

makefile

index 96842cca4f5f0895fbf669a04f75c5bf8d34ff41..0ec696b9d94c4a31dec6844450ed0cc2c4e357dc 100644 (file)
--- 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