Skip to content

Commit 855e18e

Browse files
committed
Write CHANGELOG for 1.0 with Python 3 fix
1 parent 4483e56 commit 855e18e

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ $ python -m pypack appvey.py
2222
* Command line script entry for the `main()` function
2323
* `requirements.txt` detected and included
2424

25+
#### Changes
26+
27+
* `1.0` - Python 3 compatibility fix
28+
2529
#### Details
2630

2731
Necessary package fields are read from the .py module, without
@@ -32,13 +36,13 @@ imporing it:
3236
* `__version__`
3337
* `__url__`
3438

35-
Also detects and inserts these optional fields:
39+
Also detects and restores these optional fields:
3640

3741
* `__license__`
3842
* `description` - first line of module docstring
3943

4044
Python packaging still relies on `setup.py`, so it is created
41-
automatically.
45+
automatically (but this may change with PEP-517 and PEP-518).
4246

4347
`requirements.txt` should use safe setuptools subset
4448
https://github.com/pypa/setuptools/issues/1080#issuecomment-313934637
@@ -53,13 +57,15 @@ https://github.com/pypa/setuptools/issues/1080#issuecomment-313934637
5357

5458
* [ ] Write changelog
5559

56-
* [ ] Upload archive to PyPI
57-
58-
twine upload <package.zip>
59-
6060
* [ ] Tag release
6161

6262
```
6363
git tag -a
6464
git push --follow-tags
6565
```
66+
67+
* [ ] Upload archive to PyPI
68+
69+
```
70+
twine upload <package.zip>
71+
```

0 commit comments

Comments
 (0)