8000 Added variable for changing the version in daily builds. Added the Az… · pankajit/botbuilder-python@ad94214 · GitHub
[go: up one dir, main page]

Skip to content

Commit ad94214

Browse files
committed
Added variable for changing the version in daily builds. Added the Azure Pipelines badge to readme pages
1 parent a4e959e commit ad94214

File tree

8 files changed

+23
-5
lines changed

8 files changed

+23
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Bot Builder SDK v4 (Python) (Preview)
33

44
[![Build Status](https://travis-ci.org/Microsoft/botbuilder-python.svg?branch=master)](https://travis-ci.org/Microsoft/botbuilder-python)
5+
[![Build status](https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI)](https://fuselabs.visualstudio.com/SDK_v4/_build/latest?definitionId=431)
56
[![roadmap badge](https://img.shields.io/badge/visit%20the-roadmap-blue.svg)](https://github.com/Microsoft/botbuilder-python/wiki/Roadmap)
67

78
This repository contains code for the Python version of the [Microsoft Bot Builder SDK](https://github.com/Microsoft/botbuilder). The Bot Builder SDK v4 is the latest SDK for building bot applications. It is in **Preview** state and is being actively developed.

libraries/botbuilder-azure/botbuilder/azure/about.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4+
import os
5+
46
__title__ = 'botbuilder-azure'
5-
__version__ = '4.0.0.a6'
7+
__version__ = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.0.0.a6"
68
__uri__ = 'https://www.github.com/Microsoft/botbuilder-python'
79
__author__ = 'Microsoft'
810
__description__ = 'Microsoft Bot Framework Bot Builder'

libraries/botbuilder-core/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ BotBuilder-Core SDK for Python
77
:target: https://travis-ci.org/Microsoft/botbuilder-python
88
:align: right
99
:alt: Travis status for master branch
10+
.. image:: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+
:target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+
:align: right
13+
:alt: Azure DevOps status for master branch
1014
.. image:: https://badge.fury.io/py/botbuilder-core.svg
1115
:target: https://badge.fury.io/py/botbuilder-core
1216
:alt: Latest PyPI package version

libraries/botbuilder-core/botbuilder/core/about.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4+
import os
5+
46
__title__ = 'botbuilder-core'
5-
__version__ = '4.0.0.a6'
7+
__version__ = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.0.0.a6"
68
__uri__ = 'https://www.github.com/Microsoft/botbuilder-python'
79
__author__ = 'Microsoft'
810
__description__ = 'Microsoft Bot Framework Bot Builder'

libraries/botbuilder-schema/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ BotBuilder-Schema
77
:target: https://travis-ci.org/Microsoft/botbuilder-python
88
:align: right
99
:alt: Travis status for master branch
10+
.. image:: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+
:target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+
:align: right
13+
:alt: Azure DevOps status for master branch
1014
.. image:: https://badge.fury.io/py/botbuilder-schema.svg
1115
:target: https://badge.fury.io/py/botbuilder-schema
1216
:alt: Latest PyPI package version

libraries/botbuilder-schema/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4+
import os
45
from setuptools import setup
56

67
NAME = "botbuilder-schema"
7-
VERSION = "4.0.0.a6"
8+
VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.0.0.a6"
89
REQUIRES = ["msrest==0.4.29"]
910

1011
setup(

libraries/botframework-connector/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Microsoft Bot Framework Connector for Python
77
:target: https://travis-ci.org/Microsoft/botbuilder-python
88
:align: right
99
:alt: Travis status for master branch
10+
.. image:: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI?branchName=master
11+
:target: https://fuselabs.visualstudio.com/SDK_v4/_apis/build/status/SDK_v4-Python-package-CI
12+
:align: right
13+
:alt: Azure DevOps status for master branch
1014
.. image:: https://badge.fury.io/py/botframework-connector.svg
1115
:target: https://badge.fury.io/py/botframework-connector
1216
:alt: Latest PyPI package version

libraries/botframework-connector/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
3-
3+
import os
44
from setuptools import setup
55

66
NAME = "botframework-connector"
7-
VERSION = "4.0.0.a6"
7+
VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.0.0.a6"
88
REQUIRES = [
99
"msrest==0.4.29",
1010
"requests>=2.8.1",

0 commit comments

Comments
 (0)
0