11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- python-version : ['3.10', '3.11', '3. 12', '3.13']
14
+ python-version : ['3.12', '3.13']
15
15
steps :
16
16
- uses : actions/checkout@v4
17
17
- name : Set up Python ${{ matrix.python-version }}
@@ -22,15 +22,16 @@ jobs:
22
22
run : |
23
23
python -m pip install --upgrade pip
24
24
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
31
31
- name : install Mathic3 Hello Module
32
32
run : |
33
- python -m pip install -e .
33
+ python -m pip install Mathics3
34
+ python -m pip install --no-build-isolation -e .
34
35
- name : Test Mathics3 Hello Module
35
36
run : |
36
37
make check
0 commit comments