Skip to content

Commit 5914a02

Browse files
committed
Need to use git master branch for testing
1 parent 4620460 commit 5914a02

File tree

3 files changed

+11
-21
lines changed

3 files changed

+11
-21
lines changed

.github/workflows/macos.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [macOS]
15-
python-version: ['3.9', '3.10', '3.11']
15+
python-version: ['3.10', '3.11', '3.12']
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
@@ -24,12 +24,8 @@ jobs:
2424
brew install asymptote
2525
python3 -m pip install --upgrade pip
2626
# Can comment out when next Mathics core and Mathics-scanner are released
27-
# python3 -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
28-
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
29-
# git clone https://github.com/Mathics3/mathics-core
30-
# (cd mathics-core && pip3 install -e .[full])
31-
# (cd mathics-core && bash ./admin-tools/make-op-tables.sh)
32-
python -m pip install Mathics3[full]
27+
git clone https://github.com/Mathics3/mathics-core
28+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh && pip install -e .[full])
3329
- name: Install mathicsscript
3430
run: |
3531
make

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.13', '3.9', '3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
@@ -23,13 +23,9 @@ jobs:
2323
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev asymptote
2424
python3 -m pip install --upgrade pip
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-
# git clone https://github.com/Mathics3/mathics-core
29-
# (cd mathics-core && pip3 install -e .[full])
30-
# (cd mathics-core && bash ./admin-tools/make-op-tables.sh)
31-
# python -m pip install Mathics3[full]
32-
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 && bash ./admin-tools/make-JSON-tables.sh && pip install -e .[full])
3329
- name: Install mathicsscript
3430
run: |
3531
make

.github/workflows/windows.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows]
15-
python-version: ['3.10', '3.12']
15+
python-version: ['3.11', '3.12']
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
@@ -25,11 +25,9 @@ jobs:
2525
python3 -m pip install wheel
2626
set LLVM_DIR="C:\Program Files\LLVM"
2727
# Can comment out when next Mathics core and Mathics-scanner are released
28-
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
29-
# git clone https://github.com/Mathics3/mathics-core
30-
# bash -c '(cd mathics-core && pip3 install -e .[full])'
31-
# bash -c '(cd mathics-core && bash ./admin-tools/make-op-tables.sh)'
32-
python -m pip install Mathics3[full]
28+
git clone https://github.com/Mathics3/mathics-core
29+
bash -c '(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh && python -m pip install -e .)'
30+
python -m pip install -e .
3331
- name: Install mathicsscript
3432
run: |
3533
make

0 commit comments

Comments
 (0)