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.
|
||||
""",
|
||||
license="""BSD""",
|
||||
version = "0.3",
|
||||
version = "0.4",
|
||||
author = "David Beazley",
|
||||
author_email = "dave@dabeaz.com",
|
||||
maintainer = "David Beazley",
|
||||
|
@ -2,4 +2,5 @@
|
||||
from .lex import *
|
||||
from .yacc import *
|
||||
|
||||
__version__ = "0.4"
|
||||
__all__ = [ *lex.__all__, *yacc.__all__ ]
|
||||
|
@ -31,7 +31,6 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
__version__ = '0.3'
|
||||
__all__ = ['Lexer', 'LexerStateChange']
|
||||
|
||||
import re
|
||||
|
@ -35,7 +35,6 @@ import sys
|
||||
import inspect
|
||||
from collections import OrderedDict, defaultdict
|
||||
|
||||
__version__ = '0.3'
|
||||
__all__ = [ 'Parser' ]
|
||||
|
||||
class YaccError(Exception):
|
||||
|
Loading…
Reference in New Issue
Block a user