Skip to content

Commit 5700c57

Browse files
committed
Updating version tag filter
1 parent c30c2de commit 5700c57

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dist
1414
.coverage
1515
htmlcov
1616
junit
17+
coverage.xml
1718

1819
# PyCharm
1920
.idea

plugins/ext_test/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
1212
long_description = f.read()
1313

14-
scm_version = {
15-
'root': '../..',
16-
'git_describe_command': 'git describe --dirty --tags --long --match "plugin-ext-test*"',
17-
}
14+
# scm_version = {
15+
# 'root': '../..',
16+
# 'git_describe_command': "git describe --dirty --tags --long --match plugin-ext-test*",
17+
# }
1818

1919
PACKAGE_DATA = {
2020
'cmd2_ext_test': ['py.typed'],
2121
}
2222

2323
setuptools.setup(
2424
name='cmd2-ext-test',
25-
version=scm_version,
25+
version='2.0.0',
2626
description='External test plugin for cmd2. Allows for external invocation of commands as if from a cmd2 pyscript',
2727
long_description=long_description,
2828
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)