Skip to content

Commit 62c57bd

Browse files
authored
Merge pull request #386 from Azure/dev
Promote to main for 1.1.5 release
2 parents 87feb73 + 462fb69 commit 62c57bd

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CODEOWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# See https://help.github.com/articles/about-codeowners/
2+
# for more info about CODEOWNERS file
3+
#
4+
# It uses the same pattern rule for gitignore file
5+
# https://git-scm.com/docs/gitignore#_pattern_format
6+
#
7+
#
8+
# AZURE FUNCTIONS TEAM
9+
# For all file changes, github would automatically include the following people in the PRs.
10+
#
11+
12+
* @davidmrdavid

azure-pipelines-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- task: UsePythonVersion@0
1919
inputs:
20-
versionSpec: '3.6'
20+
versionSpec: '3.7'
2121
- download: DurablePyCI
2222
- script: "rm -r ./azure_functions_durable/_manifest"
2323
displayName: 'Remove _manifest folder'

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trigger:
1313
- v*
1414

1515
variables:
16-
python.version: '3.6'
16+
python.version: '3.7'
1717
baseFolder: .
1818
componentArtifactName: 'azure_functions_durable'
1919
#componentArtifactName: 'dist'

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ def run(self, *args, **kwargs):
2626

2727
setup(
2828
name='azure-functions-durable',
29-
packages=find_packages(exclude=("tests", "samples","scripts")),
29+
packages=find_packages(exclude=[
30+
"tests",
31+
"samples",
32+
"scripts",
33+
"azure"
34+
]),
3035
use_scm_version=True,
3136
setup_requires=['setuptools_scm'],
3237
description='Durable Functions For Python',

0 commit comments

Comments
 (0)