8000 add versioning to dependencies and use Python prerelease syntax · CodingSta/botbuilder-python@9fd96fd · GitHub
[go: up one dir, main page]

Skip to content

Commit 9fd96fd

Browse files
committed
add versioning to dependencies and use Python prerelease syntax
1 parent b7aaf3d commit 9fd96fd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

libraries/botbuilder-core/setup.py

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

66
NAME = "botbuilder-core"
7-
VERSION = "4.0.0-a0"
7+
VERSION = "4.0.0.a0"
88
REQUIRES = [
9-
"botbuilder-schema",
10-
"botframework-connector"]
9+
"botbuilder-schema>=4.0.0.a0",
10+
"botframework-connector>=4.0.0.a0"]
1111

1212
setup(
1313
name=NAME,

libraries/botbuilder-schema/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup
55

66
NAME = "botbuilder-schema"
7-
VERSION = "4.0.0-a0"
7+
VERSION = "4.0.0.a0"
88
REQUIRES = ["msrest>=0.2.0"]
99

1010
setup(

libraries/botframework-connector/setup.py

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

66
NAME = "botframework-connector"
7-
VERSION = "4.0.0-a0"
7+
VERSION = "4.0.0.a0"
88
REQUIRES = [
99
"msrest>=0.2.0",
1010
"requests>=2.8.1",
1111
"cryptography>=2.1.4",
1212
"PyJWT>=1.5.3",
13-
"botbuilder-schema"]
13+
"botbuilder-schema>=4.0.0.a0"]
1414

1515
setup(
1616
name=NAME,

0 commit comments

Comments
 (0)
0