Skip to content

Commit fd61b23

Browse files
authored
Update old references to Python 3.6 to 3.9 (#553)
* Update old references to Python 3.6 to 3.9
1 parent db54053 commit fd61b23

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.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

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)