Skip to content

Commit c9bd382

Browse files
committed
Get ready for release 3.0.0
1 parent 8192fdd commit c9bd382

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ TAG ?= latest
1414
.PHONY: all docker-image \
1515
check clean \
1616
rmChangeLog \
17+
dist \
1718
push \
1819
upload \
1920
test
@@ -31,6 +32,10 @@ endif
3132
#: Default target - same as "develop"
3233
all: docker-image
3334

35+
#: Make distirbution: wheels, eggs, tarball
36+
dist:
37+
./admin-tools/make-dist.sh
38+
3439
#: Pull mathics docker image from dockerhub with tag $(TAG). The default tag is "latest".
3540
docker-pull:
3641
$(DOCKER) pull mathicsorg/mathics:$(TAG)

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
3.0.0
2+
-----
3+
4+
Track changes to Mathics core Django, mathicsscript, and pymathics-graph.
5+
Numerous docker config changes.
6+
7+
18
2.2.0
29
-----
310

__pkginfo__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def read(*rnames):
2727
IS_PYPY = "__pypy__" in sys.builtin_module_names
2828

2929
install_requires = [
30-
"Mathics3 >= 2.2.0",
31-
"mathicsscript >= 2.1.2",
32-
"Mathics-Django >= 2.2.0",
30+
"Mathics3 >= 3.0.0",
31+
"mathicsscript >= 3.2.1",
32+
"Mathics-Django >= 3.0.0",
3333
"pymathics-natlang",
34-
"pymathics-graph",
34+
"pymathics-graph>=2.3.0",
3535
]
3636

3737
py_modules = None

mathics_omnibus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# This file is suitable for sourcing inside POSIX shell as
55
# well as importing into Python. That's why there is no
66
# space around "=" below.
7-
__version__="2.2.1.dev0" # noqa
7+
__version__="3.0.0" # noqa

0 commit comments

Comments
 (0)