Skip to content

Commit c6b2800

Browse files
tvalentynAnandInguva
authored andcommitted
Announce Python 3.11 changes
1 parent 1581137 commit c6b2800

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@
5454

5555
## Highlights
5656

57-
* New highly anticipated feature X added to Python SDK ([#X](https://github.com/apache/beam/issues/X)).
58-
* New highly anticipated feature Y added to Java SDK ([#Y](https://github.com/apache/beam/issues/Y)).
57+
* Apache Beam adds Python 3.11 support ([#23848](https://github.com/apache/beam/issues/23848)).
5958

6059
## I/Os
6160

sdks/python/apache_beam/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
import warnings
7171

7272
if sys.version_info.major == 3:
73-
if sys.version_info.minor <= 6 or sys.version_info.minor >= 11:
73+
if sys.version_info.minor <= 6 or sys.version_info.minor >= 12:
7474
warnings.warn(
7575
'This version of Apache Beam has not been sufficiently tested on '
7676
'Python %s.%s. You may encounter bugs or missing features.' %

sdks/python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ def get_portability_package_data():
365365
'Programming Language :: Python :: 3.8',
366366
'Programming Language :: Python :: 3.9',
367367
'Programming Language :: Python :: 3.10',
368+
'Programming Language :: Python :: 3.11',
368369
# When updating version classifiers, also update version warnings
369370
# above and in apache_beam/__init__.py.
370371
'Topic :: Software Development :: Libraries',

0 commit comments

Comments
 (0)