8000 fixed package versioning requirements for botbuilder azure · rsliang/botbuilder-python@6ae4f25 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6ae4f25

Browse files
committed
fixed package versioning requirements for botbuilder azure
1 parent 99a15a1 commit 6ae4f25

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

libraries/botbuilder-ai/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ botbuilder-schema>=4.0.0.a6
33
botbuilder-core>=4.0.0.a6
44
requests>=2.18.1
55
aiounittest>=1.1.0
6-
azure-cognitiveservices-language-luis==0.2.0
6+
azure-cognitiveservices-language-luis>=0.2.0

libraries/botbuilder-azure/setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=0

libraries/botbuilder-azure/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
import os
55
from setuptools import setup
66

7-
REQUIRES = ['azure-cosmos==3.0.0',
7+
REQUIRES = ['azure-cosmos>=3.0.0',
88
'botbuilder-schema>=4.0.0.a6',
99
'botframework-connector>=4.0.0.a6']
10-
TEST_REQUIRES = ['aiounittests==1.1.0']
10+
TEST_REQUIRES = ['aiounittests>=1.1.0']
1111

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

0 commit comments

Comments
 (0)
0