Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

# 1. Downloads wheels from Azure Artifacts

Image RemovedImage Added

# 2. Put the downloaded wheel packages in dist folder of flink-python module

cd flink-python

mkdir dist(optional)

## move all downloaded wheel packages to the dist folder(manually)

# 3. Run the supported script to restore executable permission

## Script files in packages downloaded from Azure will lose executable permissions

dev/restore-executable.sh

#3 Upload the wheel packages to PyPI, e.g.

twine upload --repository-url https://upload.pypi.org/legacy/ dist/*.whl

...