Skip to content

Commit 1baf9b4

Browse files
Removes support for 3.8 and adds 3.13 to test version matrix (#763)
Signed-off-by: Elena Kolevska <[email protected]>
1 parent 25666bf commit 1baf9b4

File tree

34 files changed

+40
-40
lines changed

34 files changed

+40
-40
lines changed

.github/workflows/build-push-to-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
python_ver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
43+
python_ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4444
steps:
4545
- uses: actions/checkout@v4
4646
- name: Set up Python ${{ matrix.python_ver }}

.github/workflows/build-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
python_ver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
46+
python_ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4747
steps:
4848
- uses: actions/checkout@v4
4949
- name: Set up Python ${{ matrix.python_ver }}

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
fail-fast: false
4848
matrix:
49-
python_ver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
49+
python_ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5050
steps:
5151
- uses: actions/checkout@v4
5252
- name: Set up Python ${{ matrix.python_ver }}

.github/workflows/validate_examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
fail-fast: false
4848
matrix:
49-
python_ver: [3.8, 3.9, "3.10", "3.11", "3.12"]
49+
python_ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5050
steps:
5151
- name: Parse repository_dispatch payload
5252
if: github.event_name == 'repository_dispatch'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This includes the following packages:
3030
### Prerequisites
3131

3232
* [Install Dapr standalone mode](https://github.com/dapr/cli#install-dapr-on-your-local-machine-self-hosted)
33-
* [Install Python 3.8+](https://www.python.org/downloads/)
33+
* [Install Python 3.9+](https://www.python.org/downloads/)
3434

3535
### Install Dapr python sdk
3636

daprdocs/content/en/python-sdk-docs/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Dapr offers a variety of subpackages to help with the development of Python appl
1818

1919
- [Dapr CLI]({{< ref install-dapr-cli.md >}}) installed
2020
- Initialized [Dapr environment]({{< ref install-dapr-selfhost.md >}})
21-
- [Python 3.8+](https://www.python.org/downloads/) installed
21+
- [Python 3.9+](https://www.python.org/downloads/) installed
2222

2323
## Installation
2424

daprdocs/content/en/python-sdk-docs/python-actor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Dapr actor package allows you to interact with Dapr virtual actors from a Py
1212

1313
- [Dapr CLI]({{< ref install-dapr-cli.md >}}) installed
1414
- Initialized [Dapr environment]({{< ref install-dapr-selfhost.md >}})
15-
- [Python 3.8+](https://www.python.org/downloads/) installed
15+
- [Python 3.9+](https://www.python.org/downloads/) installed
1616
- [Dapr Python package]({{< ref "python#installation" >}}) installed
1717

1818
## Actor interface

daprdocs/content/en/python-sdk-docs/python-sdk-extensions/python-workflow-ext/python-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In the Python example project, the `app.py` file contains the setup of the app,
2121
## Prerequisites
2222
- [Dapr CLI]({{< ref install-dapr-cli.md >}}) installed
2323
- Initialized [Dapr environment]({{< ref install-dapr-selfhost.md >}})
24-
- [Python 3.8+](https://www.python.org/downloads/) installed
24+
- [Python 3.9+](https://www.python.org/downloads/) installed
2525
- [Dapr Python package]({{< ref "python#installation" >}}) and the [workflow extension]({{< ref "python-workflow/_index.md" >}}) installed
2626
- Verify you're using the latest proto bindings
2727

examples/configuration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It demonstrates the following APIs:
99
## Pre-requisites
1010

1111
- [Dapr CLI and initialized environment](https://docs.dapr.io/getting-started)
12-
- [Install Python 3.8+](https://www.python.org/downloads/)
12+
- [Install Python 3.9+](https://www.python.org/downloads/)
1313

1414
## Install Dapr python-SDK
1515

examples/crypto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It creates a client using `DaprClient`, uses a local store defined in
1111
## Pre-requisites
1212

1313
- [Dapr CLI and initialized environment](https://docs.dapr.io/getting-started)
14-
- [Install Python 3.8+](https://www.python.org/downloads/)
14+
- [Install Python 3.9+](https://www.python.org/downloads/)
1515

1616
> In order to run this sample, make sure that OpenSSL is available on your system.
1717

0 commit comments

Comments
 (0)