File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed
Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1- name : mathics-script (OSX)
1+ name : Mathics_Script (OSX)
22
33on :
44 push :
Original file line number Diff line number Diff line change 1- name : mathics-script (ubuntu)
1+ name : Mathics_Script (ubuntu)
22
33on :
44 push :
2121 - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
24- - name : Install Mathics-Scanner
24+ - name : Install Mathics_Scanner
2525 run : |
2626 make
2727 - name : Test Mathics Scanner
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ cd $(dirname ${BASH_SOURCE[0]})
1616owd=$( pwd)
1717cd ..
1818version=` python -c " import mathics; print(mathics.__version__)" `
19- echo " Releasing Mathics-Scanner $version "
19+ echo " Releasing Mathics_Scanner $version "
2020
2121rm -rf build/release
2222python setup.py build
Original file line number Diff line number Diff line change 55# This file is suitable for sourcing inside POSIX shell as
66# well as importing into Python. That's why there is no
77# space around "=" below.
8- __version__ = "1.0.0.dev " # noqa
8+ __version__ = "1.0.0.dev0 " # noqa
Original file line number Diff line number Diff line change 2828import sys
2929import os .path as osp
3030import platform
31+ import subprocess
3132from setuptools import setup , Command , Extension
3233
3334# Ensure user has the correct Python version
@@ -43,6 +44,7 @@ def get_srcdir():
4344def read (* rnames ):
4445 return open (osp .join (get_srcdir (), * rnames )).read ()
4546
47+ subprocess .run (["make" , "mathics_scanner/data/characters.json" ])
4648
4749# stores __version__ in the current namespace
4850exec (compile (open ("mathics_scanner/version.py" ).read (), "mathics_scanner/version.py" , "exec" ))
You can’t perform that action at this time.
0 commit comments