Skip to content

Commit 1dfd89d

Browse files
authored
Remove python 3.6 references (#25445)
1 parent 299be58 commit 1dfd89d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.test-infra/tools/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ Example:
4747
- Original
4848

4949
```bash
50-
python_versions_arr=("3.6.13" "3.7.10" "3.8.9" "3.9.4")
50+
python_versions_arr=("3.8.16" "3.7.16" "3.9.16" "3.10.10")
5151
```
5252

5353
- Change
5454

5555
```bash
56-
python_versions_arr=("3.6.13" "3.7.10" "3.9.0" "3.10.2")
56+
python_versions_arr=("3.8.10" "3.9.0" "3.10.2")
5757
```

.test-infra/tools/python_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set -euo pipefail
2121

2222
# Variable containing the python versions to install
23-
python_versions_arr=("3.8.9" "3.6.13" "3.7.10" "3.9.4" "3.10.1")
23+
python_versions_arr=("3.8.16" "3.7.16" "3.9.16" "3.10.10")
2424

2525
# Install pyenv dependencies.
2626
pyenv_dep(){

sdks/python/apache_beam/runners/dataflow/internal/apiclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
_LOGGER = logging.getLogger(__name__)
8484

85-
_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.6', '3.7', '3.8', '3.9', '3.10']
85+
_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.7', '3.8', '3.9', '3.10']
8686

8787

8888
class Step(object):

website/www/site/content/en/get-started/quickstart-py.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you're interested in contributing to the Apache Beam Python codebase, see the
2323

2424
{{< toc >}}
2525

26-
The Python SDK supports Python 3.6, 3.7, and 3.8. Beam 2.24.0 was the last release with support for Python 2.7 and 3.5.
26+
The Python SDK supports Python 3.7, 3.8, 3.9 and 3.10. Beam 2.38.0 was the last release with support for Python 3.6.
2727

2828
## Set up your environment
2929

0 commit comments

Comments
 (0)