Skip to content

Commit 9b4ad85

Browse files
authored
Try using versions from PyPI (#81)
1 parent b2aec9c commit 9b4ad85

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/osx.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
os: [macOS]
1515
python-version: ['3.8', '3.9', '3.10']
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -26,10 +26,10 @@ jobs:
2626
# Can comment out when next Mathics core and Mathics-scanner are released
2727
# python3 -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2828
# 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]
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]
3333
- name: Install mathicsscript
3434
run: |
3535
make

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
# Can comment out when next Mathics core and Mathics-scanner are released
2626
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2727
# 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]
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]
3232
- name: Install mathicsscript
3333
run: |
3434
make

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
set LLVM_DIR="C:\Program Files\LLVM"
2727
# Can comment out when next Mathics core and Mathics-scanner are released
2828
# 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 Mathic3[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]
3333
- name: Install mathicsscript
3434
run: |
3535
make

0 commit comments

Comments
 (0)