Skip to content

Commit e76f26f

Browse files
package path issue has fixed
1 parent 64ce5fb commit e76f26f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ steps:
2121
- script: |
2222
python -m pip install --upgrade pip
2323
pip install -e ./libraries/botbuilder-community-dialogs-prompts
24+
pip install -e ./libraries/botbuilder-community-middleware-activity-type
25+
pip install -e ./libraries/botbuilder-community-middleware-text-recognizer
2426
pip install pytest pytest-azurepipelines
2527
pip install coveralls
2628
pip install pylint

libraries/botbuilder-community-middleware-activity-type/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
root = os.path.abspath(os.path.dirname(__file__))
1414

15-
with open(os.path.join(root, "botbuilder", "community", "middleware", "text","recognizer", "about.py")) as f:
15+
with open(os.path.join(root, "botbuilder", "community", "middleware", "activity","type", "about.py")) as f:
1616
package_info = {}
1717
info = f.read()
1818
exec(info, package_info)
@@ -26,12 +26,12 @@
2626
url=package_info["__uri__"],
2727
author=package_info["__author__"],
2828
description=package_info["__description__"],
29-
keywords="botbuilder bots ai botframework middleware text-recognizer",
29+
keywords="botbuilder bots ai botframework middleware activity type",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",
3232
license=package_info["__license__"],
3333
packages=[
34-
"botbuilder-community-middleware-text-recognizer",
34+
"botbuilder.community.middleware.activity.type",
3535
],
3636
install_requires=REQUIRES + TESTS_REQUIRES,
3737
tests_require=TESTS_REQUIRES,

libraries/botbuilder-community-middleware-text-recognizer/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
url=package_info["__uri__"],
2727
author=package_info["__author__"],
2828
description=package_info["__description__"],
29-
keywords="botbuilder bots ai botframework middleware text-recognizer",
29+
keywords="botbuilder bots ai botframework middleware text recognizer",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",
3232
license=package_info["__license__"],
3333
packages=[
34-
"botbuilder-community-middleware-text-recognizer",
34+
"botbuilder.community.middleware.text.recognizer",
3535
],
3636
install_requires=REQUIRES + TESTS_REQUIRES,
3737
tests_require=TESTS_REQUIRES,

0 commit comments

Comments
 (0)