Bumped version number
This commit is contained in:
parent
52c993e00c
commit
d1b9f64e49
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ setup(name = "sly",
|
|||||||
SLY is an implementation of lex and yacc for Python 3.
|
SLY is an implementation of lex and yacc for Python 3.
|
||||||
""",
|
""",
|
||||||
license="""BSD""",
|
license="""BSD""",
|
||||||
version = "0.3",
|
version = "0.4",
|
||||||
author = "David Beazley",
|
author = "David Beazley",
|
||||||
author_email = "dave@dabeaz.com",
|
author_email = "dave@dabeaz.com",
|
||||||
maintainer = "David Beazley",
|
maintainer = "David Beazley",
|
||||||
|
@ -2,4 +2,5 @@
|
|||||||
from .lex import *
|
from .lex import *
|
||||||
from .yacc import *
|
from .yacc import *
|
||||||
|
|
||||||
|
__version__ = "0.4"
|
||||||
__all__ = [ *lex.__all__, *yacc.__all__ ]
|
__all__ = [ *lex.__all__, *yacc.__all__ ]
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
__version__ = '0.3'
|
|
||||||
__all__ = ['Lexer', 'LexerStateChange']
|
__all__ = ['Lexer', 'LexerStateChange']
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
@ -35,7 +35,6 @@ import sys
|
|||||||
import inspect
|
import inspect
|
||||||
from collections import OrderedDict, defaultdict
|
from collections import OrderedDict, defaultdict
|
||||||
|
|
||||||
__version__ = '0.3'
|
|
||||||
__all__ = [ 'Parser' ]
|
__all__ = [ 'Parser' ]
|
||||||
|
|
||||||
class YaccError(Exception):
|
class YaccError(Exception):
|
||||||
|
Loading…
Reference in New Issue
Block a user