tvalentyn commented on a change in pull request #12911:
URL: https://github.com/apache/beam/pull/12911#discussion_r493772077
##########
File path: sdks/python/apache_beam/__init__.py
##########
@@ -94,9 +86,8 @@
pass
else:
raise RuntimeError(
- 'The Apache Beam SDK for Python is only supported on Python 2.7 or '
- 'Python 3. It is not supported on Python [' + str(sys.version_info) +
- '].')
+ 'The Apache Beam SDK for Python is only supported on Python 3. '
+ 'It is not supported on Python [' + str(sys.version_info) + '].')
Review comment:
python_requires >= 3.6 should make it uninstallable on <3.5, but for
folks like us who import sources and don't `pip install` beam a warning
wouldn't hurt.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]