Skip to content

Commit

Permalink
Remove python 3.6 references (#25445)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandInguva committed Feb 14, 2023
1 parent 299be58 commit 1dfd89d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .test-infra/tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ Example:
- Original

```bash
python_versions_arr=("3.6.13" "3.7.10" "3.8.9" "3.9.4")
python_versions_arr=("3.8.16" "3.7.16" "3.9.16" "3.10.10")
```

- Change

```bash
python_versions_arr=("3.6.13" "3.7.10" "3.9.0" "3.10.2")
python_versions_arr=("3.8.10" "3.9.0" "3.10.2")
```
2 changes: 1 addition & 1 deletion .test-infra/tools/python_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
set -euo pipefail

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

# Install pyenv dependencies.
pyenv_dep(){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

_LOGGER = logging.getLogger(__name__)

_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.6', '3.7', '3.8', '3.9', '3.10']
_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.7', '3.8', '3.9', '3.10']


class Step(object):
Expand Down
2 changes: 1 addition & 1 deletion website/www/site/content/en/get-started/quickstart-py.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you're interested in contributing to the Apache Beam Python codebase, see the

{{< toc >}}

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.
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.

## Set up your environment

Expand Down

0 comments on commit 1dfd89d

Please sign in to comment.