Skip to content

Commit

Permalink
[py] fix sdist publish instructions (SeleniumHQ#11375)
Browse files Browse the repository at this point in the history
It appears that only wheels are being published to pypi, this should
fix the publishing procedure to include sdists.
  • Loading branch information
jameshilliard committed Dec 13, 2022
1 parent ee136e1 commit 29e1cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ pip install bazel-bin/py/selenium-*.whl
To publish run:

```sh
bazel build //py:selenium-wheel
twine upload bazel-bin/py/selenium-*.whl
bazel build //py:selenium-wheel //py:selenium-sdist
twine upload bazel-bin/py/selenium-*.whl bazel-bin/py/selenium-*.tar.gz
```
</details>

Expand Down

0 comments on commit 29e1cf6

Please sign in to comment.