File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ source mathics_django/version.py
2020echo $__version__
2121
2222cp -v ${HOME} /.local/var/Mathics3/doc_html_data.pcl mathics_django/doc/
23- pyversion=3.13
23+ pyversion=3.14
2424if ! pyenv local $pyversion ; then
2525 exit $?
2626fi
2727rm -fr build
2828python -m build --wheel
29- python ./setup.py sdist
29+ python -m build -- sdist
3030finish
Original file line number Diff line number Diff line change 22Format Mathics3 objects
33"""
44
5+ from typing import Dict , Final
6+
57from mathics .core .atoms import String
68from mathics .core .systemsymbols import (
79 SymbolAborted ,
1719# text is the usual text-kind of output.
1820# LaTeX is handled by MathJaX display mode $$ $$
1921# MathML could be tagged differently too.
20- FORM_TO_HTML_TAG_FORMAT = {
22+ FORM_TO_HTML_TAG_FORMAT : Final [ Dict [ str , str ]] = {
2123 "System`FullForm" : "text" ,
2224 "System`InputForm" : "text" ,
2325 # "System`MathMLForm": "MathML",
You can’t perform that action at this time.
0 commit comments