We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ef655f commit f915c41Copy full SHA for f915c41
RELEASE.md
@@ -3,7 +3,7 @@ PyPi
3
4
Preparation:
5
6
-* update all help files (`img-help -f markdown -o plugins -l INFO`)
+* update all help files (`img-help -f markdown -o plugins -i README.md -l INFO`)
7
* update the help screen of `img-convert` in `README.md` to have the latest list of plugins
8
* increment version in `setup.py`
9
* add new changelog section in `CHANGES.rst`
@@ -15,9 +15,9 @@ Commands for releasing on pypi.org (requires twine >= 1.8.0):
15
```
16
find -name "*~" -delete
17
rm dist/*
18
-./venv/bin/python setup.py clean
19
-./venv/bin/python setup.py sdist
20
-./venv/bin/twine upload dist/*
+python3 setup.py clean
+python3 setup.py sdist
+twine upload dist/*
21
22
23
0 commit comments