Bumped version number

This commit is contained in:
David Beazley 2018-11-18 07:57:34 -06:00
parent 52c993e00c
commit d1b9f64e49
4 changed files with 2 additions and 3 deletions

View File

@ -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",

View File

@ -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__ ]

View File

@ -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

View File

@ -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):