Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 607 Bytes

File metadata and controls

19 lines (12 loc) · 607 Bytes

Release a new version in PyPI

A new package is automatically uploaded to PyPI when a new tag is pushed to Github. To release a new version follow the steps:

  1. Update the version number X.X.X in scrapingbee/version.py and push the change.

  2. Create a tag with the same version number.

git tag X.X.X
  1. Push the tag to Github.
git push origin X.X.X

A new version will be pushed to PyPI using the PyPI Github Action defined in .github/workflows/main.yaml.