File tree 31 files changed +57
-57
lines changed
botbuilder-adapters-slack
botbuilder/adapters/slack
botbuilder-applicationinsights
botbuilder/applicationinsights
botbuilder-integration-aiohttp
botbuilder/integration/aiohttp
botbuilder-integration-applicationinsights-aiohttp
botbuilder/integration/applicationinsights/aiohttp
functional-tests/functionaltestbot 31 files changed +57
-57
lines changed Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-adapters-slack"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
aiohttp
2
2
pyslack
3
- botbuilder-core >= 4.7.1
3
+ botbuilder-core >= 4.10.0
4
4
slackclient
Original file line number Diff line number Diff line change 5
5
from setuptools import setup
6
6
7
7
REQUIRES = [
8
- "botbuilder-schema>=4.7 .0" ,
9
- "botframework-connector>=4.7 .0" ,
10
- "botbuilder-core>=4.7 .0" ,
8
+ "botbuilder-schema>=4.10 .0" ,
9
+ "botframework-connector>=4.10 .0" ,
10
+ "botbuilder-core>=4.10 .0" ,
11
11
]
12
12
13
13
TEST_REQUIRES = ["aiounittest==1.3.0" ]
Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-ai"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botbuilder-schema >= 4.7.1
3
- botbuilder-core >= 4.7.1
2
+ botbuilder-schema >= 4.10.0
3
+ botbuilder-core >= 4.10.0
4
4
requests == 2.22.0
5
5
aiounittest == 1.3.0
6
6
azure-cognitiveservices-language-luis == 0.2.0
Original file line number Diff line number Diff line change 6
6
7
7
REQUIRES = [
8
8
"azure-cognitiveservices-language-luis==0.2.0" ,
9
- "botbuilder-schema>=4.7.1 " ,
10
- "botbuilder-core>=4.7.1 " ,
9
+ "botbuilder-schema>=4.10.0 " ,
10
+ "botbuilder-core>=4.10.0 " ,
11
11
"aiohttp==3.6.2" ,
12
12
]
13
13
Original file line number Diff line number Diff line change 6
6
7
7
__title__ = "botbuilder-applicationinsights"
8
8
__version__ = (
9
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
9
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
10
10
)
11
11
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
12
12
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botbuilder-core >= 4.7.1
2
+ botbuilder-core >= 4.10.0
3
3
aiounittest == 1.3.0
Original file line number Diff line number Diff line change 6
6
7
7
REQUIRES = [
8
8
"applicationinsights>=0.11.9" ,
9
- "botbuilder-schema>=4.7.1 " ,
10
- "botframework-connector>=4.7.1 " ,
11
- "botbuilder-core>=4.7.1 " ,
9
+ "botbuilder-schema>=4.10.0 " ,
10
+ "botframework-connector>=4.10.0 " ,
11
+ "botbuilder-core>=4.10.0 " ,
12
12
]
13
13
TESTS_REQUIRES = [
14
14
"aiounittest==1.3.0" ,
Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-azure"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 7
7
REQUIRES = [
8
8
"azure-cosmos==3.1.2" ,
9
9
"azure-storage-blob==2.1.0" ,
10
- "botbuilder-schema>=4.7.1 " ,
11
- "botframework-connector>=4.7.1 " ,
10
+ "botbuilder-schema>=4.10.0 " ,
11
+ "botframework-connector>=4.10.0 " ,
12
12
"jsonpickle==1.2" ,
13
13
]
14
14
TEST_REQUIRES = ["aiounittest==1.3.0" ]
Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-core"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botframework-connector >= 4.7.1
3
- botbuilder-schema >= 4.7.1
2
+ botframework-connector >= 4.10.0
3
+ botbuilder-schema >= 4.10.0
4
4
requests == 2.22.0
5
5
PyJWT == 1.5.3
6
6
cryptography == 2.8.0
Original file line number Diff line number Diff line change 4
4
import os
5
5
from setuptools import setup
6
6
7
- VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
7
+ VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
8
8
REQUIRES = [
9
- "botbuilder-schema>=4.7.1 " ,
10
- "botframework-connector>=4.7.1 " ,
9
+ "botbuilder-schema>=4.10.0 " ,
10
+ "botframework-connector>=4.10.0 " ,
11
11
"jsonpickle==1.2" ,
12
12
]
13
13
Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-dialogs"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botframework-connector >= 4.7.1
3
- botbuilder-schema >= 4.7.1
4
- botbuilder-core >= 4.7.1
2
+ botframework-connector >= 4.10.0
3
+ botbuilder-schema >= 4.10.0
4
+ botbuilder-core >= 4.10.0
5
5
requests == 2.22.0
6
6
PyJWT == 1.5.3
7
7
cryptography == 2.8
Original file line number Diff line number Diff line change 12
12
"recognizers-text>=1.0.2a1" ,
13
13
"recognizers-text-choice>=1.0.2a1" ,
14
14
"babel==2.7.0" ,
15
- "botbuilder-schema>=4.7.1 " ,
16
- "botframework-connector>=4.7.1 " ,
17
- "botbuilder-core>=4.7.1 " ,
15
+ "botbuilder-schema>=4.10.0 " ,
16
+ "botframework-connector>=4.10.0 " ,
17
+ "botbuilder-core>=4.10.0 " ,
18
18
]
19
19
20
20
TEST_REQUIRES = ["aiounittest==1.3.0" ]
Original file line number Diff line number Diff line change 5
5
6
6
__title__ = "botbuilder-integration-aiohttp"
7
7
__version__ = (
8
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
)
10
10
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
11
11
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botframework-connector >= 4.7.1
3
- botbuilder-schema >= 4.7.1
2
+ botframework-connector >= 4.10.0
3
+ botbuilder-schema >= 4.10.0
4
4
aiohttp >= 3.6.2
Original file line number Diff line number Diff line change 4
4
import os
5
5
from setuptools import setup
6
6
7
- VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
7
+ VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
8
8
REQUIRES = [
9
- "botbuilder-schema>=4.7.1 " ,
10
- "botframework-connector>=4.7.1 " ,
11
- "botbuilder-core>=4.7.1 " ,
9
+ "botbuilder-schema>=4.10.0 " ,
10
+ "botframework-connector>=4.10.0 " ,
11
+ "botbuilder-core>=4.10.0 " ,
12
12
"aiohttp==3.6.2" ,
13
13
]
14
14
Original file line number Diff line number Diff line change 6
6
7
7
__title__ = "botbuilder-integration-applicationinsights-aiohttp"
8
8
__version__ = (
9
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
9
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
10
10
)
11
11
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
12
12
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 7
7
REQUIRES = [
8
8
"applicationinsights>=0.11.9" ,
9
9
"aiohttp==3.6.2" ,
10
- "botbuilder-schema>=4.7.1 " ,
11
- "botframework-connector>=4.7.1 " ,
12
- "botbuilder-core>=4.7.1 " ,
13
- "botbuilder-applicationinsights>=4.7.1 " ,
10
+ "botbuilder-schema>=4.10.0 " ,
11
+ "botframework-connector>=4.10.0 " ,
12
+ "botbuilder-core>=4.10.0 " ,
13
+ "botbuilder-applicationinsights>=4.10.0 " ,
14
14
]
15
15
TESTS_REQUIRES = [
16
16
"aiounittest==1.3.0" ,
Original file line number Diff line number Diff line change 5
5
from setuptools import setup
6
6
7
7
NAME = "botbuilder-schema"
8
- VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
8
+ VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
9
9
REQUIRES = ["msrest==0.6.10" ]
10
10
11
11
root = os .path .abspath (os .path .dirname (__file__ ))
Original file line number Diff line number Diff line change 6
6
7
7
__title__ = "botbuilder-testing"
8
8
__version__ = (
9
- os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
9
+ os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
10
10
)
11
11
__uri__ = "https://www.github.com/Microsoft/botbuilder-python"
12
12
__author__ = "Microsoft"
Original file line number Diff line number Diff line change 1
- botbuilder-schema >= 4.7.1
2
- botbuilder-core >= 4.7.1
3
- botbuilder-dialogs >= 4.7.1
1
+ botbuilder-schema >= 4.10.0
2
+ botbuilder-core >= 4.10.0
3
+ botbuilder-dialogs >= 4.10.0
4
4
aiounittest == 1.3.0
Original file line number Diff line number Diff line change 5
5
from setuptools import setup
6
6
7
7
REQUIRES = [
8
- "botbuilder-schema>=4.7.1 " ,
9
- "botbuilder-core>=4.7.1 " ,
10
- "botbuilder-dialogs>=4.7.1 " ,
8
+ "botbuilder-schema>=4.10.0 " ,
9
+ "botbuilder-core>=4.10.0 " ,
10
+ "botbuilder-dialogs>=4.10.0 " ,
11
11
]
12
12
13
13
TESTS_REQUIRES = ["aiounittest==1.3.0" ]
Original file line number Diff line number Diff line change 1
1
msrest == 0.6.10
2
- botbuilder-schema >= 4.7.1
2
+ botbuilder-schema >= 4.10.0
3
3
requests == 2.22.0
4
4
PyJWT == 1.5.3
5
5
cryptography == 2.8.0
Original file line number Diff line number Diff line change 4
4
from setuptools import setup
5
5
6
6
NAME = "botframework-connector"
7
- VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.7.1 "
7
+ VERSION = os .environ ["packageVersion" ] if "packageVersion" in os .environ else "4.10.0 "
8
8
REQUIRES = [
9
9
"msrest==0.6.10" ,
10
10
"requests==2.22.0" ,
11
11
"cryptography==2.8.0" ,
12
12
"PyJWT==1.5.3" ,
13
- "botbuilder-schema>=4.7.1 " ,
13
+ "botbuilder-schema>=4.10.0 " ,
14
14
"adal==1.2.1" ,
15
15
"msal==1.2.0" ,
16
16
]
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation. All rights reserved.
2
2
# Licensed under the MIT License.
3
3
4
- botbuilder-core >= 4.5.0.b4
4
+ botbuilder-core >= 4.10
5
5
flask == 1.1.1
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ variables:
7
7
COVERALLS_SERVICE_JOB_ID : $(Build.BuildId)
8
8
COVERALLS_SERVICE_NAME : python-ci
9
9
python.36 : 3.6.10
10
- python.37 : 3.7.6
10
+ python.37 : 3.7.7
11
11
python.38 : 3.8.2
12
12
# PythonCoverallsToken: get this from Azure
13
13
You can’t perform that action at this time.
0 commit comments