@@ -11,28 +11,32 @@ jobs:
1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- python-version : ['3.12', '3.13']
14+ python-version : ['3.12', '3.13', '3.14' ]
1515 steps :
16- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v6
1717 - name : Set up Python ${{ matrix.python-version }}
18- uses : actions/setup-python@v5
18+ uses : actions/setup-python@v6
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121 - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
24- python -m pip install pytest
24+ python -m pip install pytest setuptools
2525 # Go over and comment out stuff when next Mathics core and Mathics-scanner are released
26+ # Go over and comment out stuff when next Mathics core and Mathics3-scanner are released
27+ git clone https://github.com/Mathics3/Mathics3-scanner
28+ (cd Mathics3-scanner && pip3 install -e .[full] --no-build-isolation && bash -x ./admin-tools/make-JSON-tables.sh)
2629 # python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2730 # Until the next mathics-core release
2831 git clone https://github.com/Mathics3/mathics-core
29- (cd mathics-core && python -m pip install -e .[full])
30- (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
32+ (cd mathics-core && pip3 install --no-biuild-isolation -e .[full])
33+ (cd mathics-core && bash -x ./admin-tools/make-JSON-tables.sh)
3134
3235 - name : Install Mathics3 Module nltk
3336 run : |
3437 python -m pip install --no-build-isolation setuptools Mathics3[full] nltk PatternLite enchant
3538 make develop
39+ python -m pip install -e .[full] --no-build-isolation
40+ # make develop
3641 - name : Test Mathics3 Module nltk
37- run : |
3842 make -j3 check
0 commit comments