Skip to content

Commit 4b376e2

Browse files
committed
Administrivia
1 parent 886d408 commit 4b376e2

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/consistency-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
2424
python -m pip install pytest
25-
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
25+
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2626
git clone https://github.com/Mathics3/mathics-core
2727
(cd mathics-core && make)
2828
(cd mathics-core && python -m pip install -e .[full])

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
2424
python -m pip install pytest
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-
python -m pip install Mathics3[full]
29-
python -m 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 && make)
29+
(cd mathics-core && python -m pip install -e .[full])
30+
# python -m pip install Mathics3[full]
31+
# python -m pip install -e .
3032
- name: install pymathics graph
3133
run: |
3234
make develop

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*~
2+
/.hypothesis
23
/.python-version
34
/ChangeLog
45
/build

test/consistency-and-style/test_summary_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import pytest
88

99
from pymathics.graph import __file__ as module_initfile_path
10-
from mathics.core.load_builtin import name_is_builtin_symbol
1110
from mathics.builtin.base import Builtin
11+
from mathics.core.load_builtin import name_is_builtin_symbol
1212
from mathics.doc.common_doc import skip_doc
1313

1414

0 commit comments

Comments
 (0)