Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 08c6c76

Browse files
authored
Adding RELEASING.md (#80)
1 parent 7892327 commit 08c6c76

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

RELEASING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Release Compatibility_Lib
2+
3+
## Steps
4+
5+
### Update the version number in `setup.py`
6+
7+
### Build the Python wheel
8+
9+
```
10+
python setup.py bdist_wheel
11+
```
12+
13+
### Upload the package to PyPI using twine
14+
15+
```
16+
# If not installed
17+
pip install twine
18+
19+
# Running the command below needs a PyPI user account which owns this library
20+
twine upload dist/*
21+
```
22+
23+
### Create a Github release

0 commit comments

Comments
 (0)