Skip to content

Commit 0bbfeaa

Browse files
authored
Merge branch 'master' into fixldots
2 parents b63862d + 1f1c374 commit 0bbfeaa

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Makefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44
# These comments before the targets start with #:
55
# remake --tasks to shows the targets and the comments
66

7+
DOCKER_COMPOSE ?= docker-compose
8+
DOCKER_COMPOSE_FILE =
79
GIT2CL ?= admin-tools/git2cl
810
PYTHON ?= python3
911
PIP ?= pip3
1012
RM ?= rm
1113

12-
.PHONY: all build check clean develop dist doc doc-data gstest pytest test djangotest rmChangeLog
14+
.PHONY: all build \
15+
check clean \
16+
develop dist doc doc-data djangotest docker \
17+
gstest pytest \
18+
rmChangeLog \
19+
test
1320

1421
#: Default target - same as "develop"
1522
all: develop
@@ -22,6 +29,10 @@ build:
2229
develop:
2330
$(PIP) install -e .
2431

32+
#: Build docker image
33+
docker-image:
34+
$(DOCKER_COMPOSE) $(DOCKER_COMPOSE_FILE) build
35+
2536
#: Install mathics
2637
install:
2738
$(PYTHON) setup.py install

admin-tools/make-dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
PACKAGE=mathics
2+
PACKAGE=mathicsscript
33

44
# FIXME put some of the below in a common routine
55
function finish {

app/requirements-mathicsscript.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
mathics
22
colorama
33
pygments
4-
git+https://github.com/Mathics3/mathicsscript
4+
mathicsscript

mathics/builtin/patterns.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ def apply_levelspec(self, expr, rules, ls, evaluation, options):
206206
return result
207207
except InvalidLevelspecError:
208208
evaluation.message('General', 'level', ls)
209+
209210
except PatternError:
210211
evaluation.message('Replace','reps', rules)
211212

0 commit comments

Comments
 (0)