Skip to content

Commit

Permalink
Fix typo in bootstrap_beam_venv.py (#23574)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjvanrossum authored Oct 12, 2022
1 parent d22185c commit 7f54035
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,16 @@ def maybe_strict_version(s):
return parse_version('0.0')

beam_version = max(info['releases'], key=maybe_strict_version)
beam_package = 'apache_beam[gcp,aws,asure,dataframe]==' + beam_version
beam_package = 'apache_beam[gcp,aws,azure,dataframe]==' + beam_version
elif (os.path.exists(options.beam_version)
or options.beam_version.startswith('http://')
or options.beam_version.startswith('https://')):
# It's a path to a tarball.
beam_version = os.path.basename(options.beam_version)
beam_package = options.beam_version + '[gcp,aws,asure,dataframe]'
beam_package = options.beam_version + '[gcp,aws,azure,dataframe]'
else:
beam_version = options.beam_version
beam_package = 'apache_beam[gcp,aws,asure,dataframe]==' + beam_version
beam_package = 'apache_beam[gcp,aws,azure,dataframe]==' + beam_version

deps = options.extra_packages.split(';') if options.extra_packages else []
venv_dir = os.path.join(
Expand Down

0 comments on commit 7f54035

Please sign in to comment.