Skip to content

Commit 3f21bb2

Browse files
committed
Use requirements-dev.txt in setup
1 parent 6d3cb84 commit 3f21bb2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
make develop
3030
- name: Test Mathics
3131
run: |
32-
pip install pytest pexpect
32+
pip install -r requirements-dev.txt
3333
make -j3 check

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
- name: Test Mathics
3030
run: |
3131
pip install -r requirements-dev.txt
32-
PYTEST_WORKERS=-n3 make -j3 check
32+
make -j3 check

mathics/builtin/logic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ def apply(self, args, evaluation):
320320
class True_(Predefined):
321321
"""
322322
<dl>
323-
<dt>'True'
324-
<dd>represents the Boolean true value.
323+
<dt>'True'
324+
<dd>represents the Boolean true value.
325325
</dl>
326326
"""
327327

0 commit comments

Comments
 (0)