Skip to content

Commit feec793

Browse files
committed
Update old references to Python 3.6 to 3.9
Please enter the commit message for your changes. Lines starting
1 parent db54053 commit feec793

4 files changed

Lines changed: 33 additions & 4 deletions

File tree

.github/workflows/durable_python_action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v1
15-
- name: Set up Python 3.6.x
15+
- name: Set up Python 3.9.x
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.6.x
18+
python-version: 3.9.x
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Thank you for taking the time to contribute to Durable Functions in [Python](htt
2424
- MacOS (or) Windows10 Ubuntu WSL
2525
- Language Runtimes
2626
- .NET Core 2.0
27-
- \>= Python 3.6.x
27+
- \>= Python 3.9.x
2828

2929
Note: Some ML libraries may not be compatible with newer Python versions. Make sure the library is compatible with the Python version.
3030

azure-functions-durable-python.sln

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5D20AA90-6969-D8BD-9DCD-8634F4692FDA}"
6+
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "extensions", "samples\aml_monitoring\extensions.csproj", "{33E598B8-4178-679F-9B92-BE8D8A64F1A5}"
8+
EndProject
9+
Global
10+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
11+
Debug|Any CPU = Debug|Any CPU
12+
Release|Any CPU = Release|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{33E598B8-4178-679F-9B92-BE8D8A64F1A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{33E598B8-4178-679F-9B92-BE8D8A64F1A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{33E598B8-4178-679F-9B92-BE8D8A64F1A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{33E598B8-4178-679F-9B92-BE8D8A64F1A5}.Release|Any CPU.Build.0 = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(SolutionProperties) = preSolution
21+
HideSolutionNode = FALSE
22+
EndGlobalSection
23+
GlobalSection(NestedProjects) = preSolution
24+
{33E598B8-4178-679F-9B92-BE8D8A64F1A5} = {5D20AA90-6969-D8BD-9DCD-8634F4692FDA}
25+
EndGlobalSection
26+
GlobalSection(ExtensibilityGlobals) = postSolution
27+
SolutionGuid = {1EBB3E90-68BB-4794-AEFB-4F2A147954D1}
28+
EndGlobalSection
29+
EndGlobal

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def run(self, *args, **kwargs):
5252
'Development Status :: 5 - Production/Stable',
5353
],
5454
license='MIT',
55-
python_requires='>=3.6,<4',
55+
python_requires='>=3.9,<4',
5656
install_requires=[
5757
'azure-functions>=1.12.0',
5858
'aiohttp>=3.6.2',

0 commit comments

Comments
 (0)