Skip to content

Commit 0deb9ac

Browse files
committed
Add minimal packaging instructions to //README.md.
1 parent 27375a0 commit 0deb9ac

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,25 @@ be legal object keys in JavaScript, but they aren't in JSON5.
5858
To run the tests, setup a venv and install the required dependencies with
5959
`pip install -e '.[dev]'`, then run the tests with `python setup.py test`.
6060

61+
## Updating the packages
62+
63+
```
64+
# Install the build packages if need be
65+
$ python3 -m pip install build twine
66+
67+
# Build the distribution packages in //dist
68+
# (a universal wheel and a tarball by default)
69+
$ python3 -m build
70+
71+
# Upload the packages
72+
$ python3 -m twine upload dist/*
73+
```
6174

6275
## Version History / Release Notes
6376

77+
* v0.9.16 (2024-02-19)
78+
* Drop Python2 from `setup.py`
79+
* Add minimal packaging instructions to `//README.md`.
6480
* v0.9.15 (2024-02-19)
6581
* Merge in [Pull request #66](https://github.com/dpranke/pyjson5/pull/66)
6682
to include the tests and sample file in a source distribution.

0 commit comments

Comments
 (0)