Skip to content

Commit 53e32d0

Browse files
committed
Need to use git master branch for testing
1 parent 4620460 commit 53e32d0

File tree

4 files changed

+20
-25
lines changed

4 files changed

+20
-25
lines changed

.github/workflows/macos.yaml

Lines changed: 5 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,10 @@ 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-scanner
28+
(cd mathics-scanner && pip install -e . && bash ./admin-tools/make-JSON-tables.sh)
29+
git clone https://github.com/Mathics3/mathics-core
30+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh && pip install -e .[full])
3331
- name: Install mathicsscript
3432
run: |
3533
make

.github/workflows/ubuntu.yml

Lines changed: 6 additions & 9 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 }}
@@ -22,14 +22,11 @@ jobs:
2222
run: |
2323
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev asymptote
2424
python3 -m pip install --upgrade pip
25-
# 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 .
25+
# We can comment out when next Mathics core and Mathics-scanner are released
26+
git clone https://github.com/Mathics3/mathics-scanner
27+
(cd mathics-scanner && pip install -e . && bash ./admin-tools/make-JSON-tables.sh)
28+
git clone https://github.com/Mathics3/mathics-core
29+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh && pip install -e .[full])
3330
- name: Install mathicsscript
3431
run: |
3532
make

.github/workflows/windows.yml

Lines changed: 7 additions & 7 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 }}
@@ -24,12 +24,12 @@ jobs:
2424
python3 -m pip install --upgrade pip
2525
python3 -m pip install wheel
2626
set LLVM_DIR="C:\Program Files\LLVM"
27-
# 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]
27+
# We can comment out when next Mathics core and Mathics-scanner are released
28+
git clone https://github.com/Mathics3/mathics-scanner
29+
bash -c '(cd mathics-scanner && python -m pip install -e . && bash ./admin-tools/make-JSON-tables.sh)'
30+
git clone https://github.com/Mathics3/mathics-core
31+
bash -c '(cd mathics-core && ./admin-tools/make-JSON-tables.sh && python -m pip install -e .)'
32+
python -m pip install -e .
3333
- name: Install mathicsscript
3434
run: |
3535
make

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ build-backend = "setuptools.build_meta"
1111
name = "mathicsscript"
1212
description = "Command-line interface to Mathics3"
1313
dependencies = [
14-
"Mathics_Scanner>=1.4.1",
15-
"Mathics3 >= 8.0.0",
14+
"Mathics_Scanner>1.4.1",
15+
"Mathics3 >= 8.0.1",
1616
"click",
1717
"colorama",
1818
"columnize",

0 commit comments

Comments
 (0)