Skip to content

Commit fe6b245

Browse files
committed
Drop 3.9 and add 3.14 Python version
1 parent eba1e8e commit fe6b245

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/durabletask-azuremanaged.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.13
18+
- name: Set up Python 3.14
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.13
21+
python-version: 3.14
2222
- name: Install dependencies
2323
working-directory: durabletask-azuremanaged
2424
run: |
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
39+
python-version: [""3.10", "3.11", "3.12", "3.13", "3.14"]
4040
env:
4141
EMULATOR_VERSION: "latest"
4242
needs: lint
@@ -100,7 +100,7 @@ jobs:
100100
- name: Set up Python
101101
uses: actions/setup-python@v5
102102
with:
103-
python-version: "3.13" # Adjust Python version as needed
103+
python-version: "3.14" # Adjust Python version as needed
104104

105105
- name: Install dependencies
106106
run: |

.github/workflows/durabletask.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.13
18+
- name: Set up Python 3.14
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.13
21+
python-version: 3.14
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
41+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4242
needs: lint-and-unit-tests
4343
runs-on: ubuntu-latest
4444
steps:
@@ -85,7 +85,7 @@ jobs:
8585
- name: Set up Python
8686
uses: actions/setup-python@v5
8787
with:
88-
python-version: "3.13" # Adjust Python version as needed
88+
python-version: "3.14" # Adjust Python version as needed
8989

9090
- name: Install dependencies
9191
run: |

durabletask-azuremanaged/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3",
2323
"License :: OSI Approved :: MIT License",
2424
]
25-
requires-python = ">=3.9"
25+
requires-python = ">=3.10"
2626
license = {file = "LICENSE"}
2727
readme = "README.md"
2828
dependencies = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3",
2222
"License :: OSI Approved :: MIT License",
2323
]
24-
requires-python = ">=3.9"
24+
requires-python = ">=3.10"
2525
license = {file = "LICENSE"}
2626
readme = "README.md"
2727
dependencies = [

0 commit comments

Comments
 (0)