1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- python-version : ['3.10', '3.11', '3. 12', '3.13']
14+ python-version : ['3.12', '3.13']
1515 steps :
1616 - uses : actions/checkout@v4
1717 - name : Set up Python ${{ matrix.python-version }}
@@ -22,15 +22,16 @@ jobs:
2222 run : |
2323 python -m pip install --upgrade pip
2424 python -m pip install pytest
25- # Go over and comment out stuff 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- git clone https://github.com/Mathics3/mathics-core
28- (cd mathics-core && pip3 install -e .[full])
29- (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
30- python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
25+ # # Go over and comment out stuff 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+ # git clone https://github.com/Mathics3/mathics-core
28+ # (cd mathics-core && pip3 install -e .[full])
29+ # (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
30+ # python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3131 - name : install Mathic3 Hello Module
3232 run : |
33- python -m pip install -e .
33+ python -m pip install Mathics3
34+ python -m pip install --no-build-isolation -e .
3435 - name : Test Mathics3 Hello Module
3536 run : |
3637 make check
0 commit comments