Skip to content

Commit

Permalink
Remove experimental phrasing around extra packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
tvalentyn committed Sep 26, 2023
1 parent adb1a94 commit 129a410
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions sdks/python/apache_beam/runners/portability/stager.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,11 +594,9 @@ def _create_extra_packages(extra_packages, temp_dir):
'".tar", ".tar.gz", ".whl" or ".zip" instead of %s' % package)
if os.path.basename(package).endswith('.whl'):
_LOGGER.warning(
'The .whl package "%s" is provided in --extra_package. '
'This functionality is not officially supported. Since wheel '
'packages are binary distributions, this package must be '
'binary-compatible with the worker environment (e.g. Python 2.7 '
'running on an x64 Linux host).' % package)
'The .whl package "%s" provided in --extra_package '
'must be binary-compatible with the worker runtime environment.' %
package)

if not os.path.isfile(package):
if Stager._is_remote_path(package):
Expand Down

0 comments on commit 129a410

Please sign in to comment.