File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 7070import warnings
7171
7272if 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.' %
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments