Skip to content

Commit 8ca52ba

Browse files
authored
Merge branch 'master' into unit_tests
2 parents c404cce + 26c9219 commit 8ca52ba

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
124124
except ImportError:
125125
ipython_available = False
126126

127-
__version__ = '0.9.1'
127+
__version__ = '0.9.2a'
128128

129129

130130
# optional attribute, when tagged on a function, allows cmd2 to categorize commands

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '0.9'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.9.1'
65+
release = '0.9.2a'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.9.1'
8+
VERSION = '0.9.2a'
99
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1010
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1111
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
@@ -73,7 +73,7 @@
7373
# install with 'pip install -e .[dev]'
7474
'dev': [
7575
'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme',
76-
'sphinx-autobuild','invoke', 'twine',
76+
'sphinx-autobuild', 'invoke', 'twine>=1.11',
7777
]
7878
}
7979

tasks.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
#
22
# coding=utf-8
3-
"""Development related tasks to be run with 'invoke'"""
3+
"""Development related tasks to be run with 'invoke'.
44
5+
Make sure you satisfy the following Python module requirements if you are trying to publish a release to PyPI:
6+
- twine >= 1.11.0
7+
- wheel >= 0.31.0
8+
- setuptools >= 39.1.0
9+
"""
510
import os
611
import shutil
712

tests/test_cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
def test_ver():
31-
assert cmd2.__version__ == '0.9.1'
31+
assert cmd2.__version__ == '0.9.2a'
3232

3333

3434
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)