Skip to content

Commit c30c2de

Browse files
committed
Updated minimum cmd2 version for plugins to 2.0 due to API breaking changes.
1 parent 463b318 commit c30c2de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/ext_test/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
package_data=PACKAGE_DATA,
3535
packages=['cmd2_ext_test'],
3636
python_requires='>=3.6',
37-
install_requires=['cmd2 >= 0.9.4, <3'],
37+
install_requires=['cmd2 >= 2, <3'],
3838
setup_requires=['setuptools >= 42', 'setuptools_scm >= 3.4'],
3939
classifiers=[
4040
'Development Status :: 5 - Production/Stable',

plugins/template/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
setuptools.setup(
1515
name='cmd2-myplugin',
1616
# use_scm_version=True, # use_scm_version doesn't work if setup.py isn't in the repository root
17-
version='1.0.1',
17+
version='2.0.0',
1818
description='A template used to build plugins for cmd2',
1919
long_description=long_description,
2020
long_description_content_type='text/markdown',
@@ -25,7 +25,7 @@
2525
license='MIT',
2626
packages=['cmd2_myplugin'],
2727
python_requires='>=3.6',
28-
install_requires=['cmd2 >= 0.9.4, <3'],
28+
install_requires=['cmd2 >= 2, <3'],
2929
setup_requires=['setuptools_scm'],
3030
classifiers=[
3131
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)