diff options
author | Wojciech Siewierski <wojciech@siewierski.eu> | 2020-05-13 23:00:20 +0200 |
---|---|---|
committer | Wojciech Siewierski <wojciech@siewierski.eu> | 2020-05-13 23:00:20 +0200 |
commit | b89a2f21365e4b7f9eb010c0b99b85c70251a6cf (patch) | |
tree | 04ba1086967e9477ef743abfcc9a41f66205f903 /doc | |
parent | 081e73152a9391211770fab56676d7d974413ae6 (diff) | |
download | ranger-b89a2f21365e4b7f9eb010c0b99b85c70251a6cf.tar.gz |
Fully migrate from distutils to setuptools
Even the Python docs recommend setuptools over using distutils directly.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/howto-publish-a-release.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/howto-publish-a-release.md b/doc/howto-publish-a-release.md index 6bd70047..c62a1908 100644 --- a/doc/howto-publish-a-release.md +++ b/doc/howto-publish-a-release.md @@ -62,7 +62,7 @@ Update the website Make a PyPI release ------------------- * [ ] `git clean --force -d -x` -* [ ] `SETUPTOOLS_USE=1 python setup.py sdist` +* [ ] `python setup.py sdist` * [ ] `gpg --local-user 0x00000000 --detach-sign --armor dist/*` * [ ] `twine upload dist/*` |