Skip to content

Commit

Permalink
Updated minimum cmd2 version for plugins to 2.0 due to API breaking c…
Browse files Browse the repository at this point in the history
…hanges.
  • Loading branch information
anselor committed Jun 7, 2021
1 parent 463b318 commit c30c2de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/ext_test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
package_data=PACKAGE_DATA,
packages=['cmd2_ext_test'],
python_requires='>=3.6',
install_requires=['cmd2 >= 0.9.4, <3'],
install_requires=['cmd2 >= 2, <3'],
setup_requires=['setuptools >= 42', 'setuptools_scm >= 3.4'],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down
4 changes: 2 additions & 2 deletions plugins/template/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
setuptools.setup(
name='cmd2-myplugin',
# use_scm_version=True, # use_scm_version doesn't work if setup.py isn't in the repository root
version='1.0.1',
version='2.0.0',
description='A template used to build plugins for cmd2',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -25,7 +25,7 @@
license='MIT',
packages=['cmd2_myplugin'],
python_requires='>=3.6',
install_requires=['cmd2 >= 0.9.4, <3'],
install_requires=['cmd2 >= 2, <3'],
setup_requires=['setuptools_scm'],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit c30c2de

Please sign in to comment.