Skip to content

Commit 8850d8c

Browse files
committed
Merge pull request #52 from Mathics3/release-4.0.0
Get ready for release 4.0.0 make-dist.sh: Small formatting change
2 parents 2b59b6e + 6184595 commit 8850d8c

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

NEWS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
4.0.0
2+
-----
3+
4+
* Handle images via PNG and matplotlib
5+
* Packaging: include matplotlib in full install
6+
* Customize Asymptote configuration and add a psviewer that removes eps trash
7+
* Bump minimum Mathics core version to 4.0.0
8+
* Bug fix: Check if `self` has `session` attribute in `asy.__del__`
9+
110
3.3.1
211
-----
312

admin-tools/make-dist.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,11 @@ echo $__version__
2121

2222
for pyversion in $PYVERSIONS; do
2323
if ! pyenv local $pyversion ; then
24-
exit $?
24+
exit $?
2525
fi
26-
# pip bdist_egg create too-general wheels. So
27-
# we narrow that by moving the generated wheel.
28-
29-
# Pick out first two number of version, e.g. 3.7.9 -> 37
30-
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
3126
rm -fr build
3227
python setup.py bdist_egg
3328
python setup.py bdist_wheel
34-
python setup.py bdist_wheel --universal
3529
done
3630

3731
python ./setup.py sdist

mathicsscript/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# well as importing into Python. That's why there is no
55
# space around "=" below.
66
# fmt: off
7-
__version__="3.3.2.dev0" # noqa
7+
__version__="4.0.0" # noqa

0 commit comments

Comments
 (0)