Skip to content

Commit e78e67b

Browse files
committed
Bump version
1 parent 7fdada4 commit e78e67b

4 files changed

Lines changed: 5 additions & 20 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ RM ?= rm
1111
PIP_INSTALL_OPTS ?=
1212

1313
.PHONY: all build \
14+
ChangeLog-without-corrections \
1415
check check-full check-mathics3 clean \
1516
develop dist doc \
1617
inputrc-no-unicode \

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Uses
2828
The scanner and character tables are used inside `Mathics3 <https://mathics.org>`_. However information can
2929
also be used by other programs for tokenizing and formatting Wolfram Language code.
3030

31-
For example, tables are used in `mathics-pygments <https://pypi.org/project/Mathics-Scanner/>`_, a Pygments-based
31+
For example, tables are used in `mathics-pygments <https://pypi.org/project/Mathics3-pygements/>`_, a Pygments-based
3232
lexer and highlighter for Mathematica/Wolfram Language source code.
3333

3434
This library may be useful if you need to work with the Wolfram Language

mathics_scanner/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__="10.0.0" # noqa
7+
__version__="10.0.1.dev0" # noqa

setup.py

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,12 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
"""Setuptools based setup script for Mathics.
4+
"""Setuptools based setup script for Mathics3 Scanner.
55
66
For the easiest installation just type the following command (you'll probably
77
need root privileges):
88
9-
python setup.py install
10-
11-
This will install the library in the default location. For instructions on
12-
how to customize the install procedure read the output of:
13-
14-
python setup.py --help install
15-
16-
In addition, there are some other commands:
17-
18-
python setup.py clean -> will clean all trash (*.pyc and stuff)
19-
20-
To get a full list of available commands, read the output of:
21-
22-
python setup.py --help-commands
23-
24-
Or, if all else fails, feel free to write to the mathics users list at
25-
mathics-users@googlegroups.com and ask for help.
9+
pip install -e .
2610
"""
2711

2812
import os

0 commit comments

Comments
 (0)