File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 75
75
except ImportError :
76
76
pass
77
77
78
- __version__ = '0.7.5a '
78
+ __version__ = '0.7.5 '
79
79
80
80
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
81
81
pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = '0.7'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = '0.7.4 '
65
+ release = '0.7.5 '
66
66
67
67
# The language for content autogenerated by Sphinx. Refer to documentation
68
68
# for a list of supported languages.
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.7.5a '
8
+ VERSION = '0.7.5 '
9
9
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
10
10
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
11
11
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
Original file line number Diff line number Diff line change 22
22
23
23
24
24
def test_ver ():
25
- assert cmd2 .__version__ == '0.7.5a '
25
+ assert cmd2 .__version__ == '0.7.5 '
26
26
27
27
28
28
def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments