File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed
test/consistency-and-style Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
1515 steps :
1616 - uses : actions/checkout@v3
1717 - name : Set up Python ${{ matrix.python-version }}
18- uses : actions/setup-python@v2
18+ uses : actions/setup-python@v4
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121 - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
2424 python -m pip install pytest
25- python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
25+ python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2626 git clone https://github.com/Mathics3/mathics-core
2727 (cd mathics-core && make)
2828 (cd mathics-core && python -m pip install -e .[full])
Original file line number Diff line number Diff line change @@ -15,18 +15,20 @@ jobs:
1515 steps :
1616 - uses : actions/checkout@v3
1717 - name : Set up Python ${{ matrix.python-version }}
18- uses : actions/setup-python@v2
18+ uses : actions/setup-python@v4
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121 - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
2424 python -m pip install pytest
2525 # Can comment out when next Mathics core and Mathics-scanner are released
26- # python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
27- # python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
28- python -m pip install Mathics3[full]
29- python -m pip install -e .
26+ python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
27+ git clone https://github.com/Mathics3/mathics-core
28+ (cd mathics-core && make)
29+ (cd mathics-core && python -m pip install -e .[full])
30+ # python -m pip install Mathics3[full]
31+ # python -m pip install -e .
3032 - name : install pymathics graph
3133 run : |
3234 make develop
Original file line number Diff line number Diff line change 11* ~
2+ /.hypothesis
23/.python-version
34/ChangeLog
45/build
Original file line number Diff line number Diff line change 77import pytest
88
99from pymathics .graph import __file__ as module_initfile_path
10- from mathics .core .load_builtin import name_is_builtin_symbol
1110from mathics .builtin .base import Builtin
11+ from mathics .core .load_builtin import name_is_builtin_symbol
1212from mathics .doc .common_doc import skip_doc
1313
1414
You can’t perform that action at this time.
0 commit comments