You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From Python 3.9 on, typing types are deprecated in favor of builtin and collections.abc types. Beam was updated to support collections.abc.Iterator, collections.abc.Generator, and collections.abc.Iterable, but other collections types are not translated. This can lead to strange mismatches between compatible types, like collections.abc.Set and collections.abc.MutableSet. All collections.abc types should be supported in some way to prevent unexpected incompatibilities.
Issue Priority
Priority: 2 (default / most feature requests should be filed as P2)
Issue Components
Component: Python SDK
Component: Java SDK
Component: Go SDK
Component: Typescript SDK
Component: IO connector
Component: Beam YAML
Component: Beam examples
Component: Beam playground
Component: Beam katas
Component: Website
Component: Spark Runner
Component: Flink Runner
Component: Samza Runner
Component: Twister2 Runner
Component: Hazelcast Jet Runner
Component: Google Cloud Dataflow Runner
The text was updated successfully, but these errors were encountered:
What would you like to happen?
From Python 3.9 on,
typing
types are deprecated in favor ofbuiltin
andcollections.abc
types. Beam was updated to supportcollections.abc.Iterator
,collections.abc.Generator
, andcollections.abc.Iterable
, but other collections types are not translated. This can lead to strange mismatches between compatible types, likecollections.abc.Set
andcollections.abc.MutableSet
. Allcollections.abc
types should be supported in some way to prevent unexpected incompatibilities.Issue Priority
Priority: 2 (default / most feature requests should be filed as P2)
Issue Components
The text was updated successfully, but these errors were encountered: