Skip to content

Commit b50b343

Browse files
authored
Must upload with Twine (python3statement#147)
1 parent 569440b commit b50b343

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

_practicalities/intro.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,13 @@ You can look at the [full
313313
check](https://github.com/ipython/ipython/blob/6a3e2db0c299dc05e636653c4a43d0aa756fb1c8/setup.py#L23-L58)
314314
that attempt to detect which version of pip is in used.
315315

316+
## Upload with Twine.
317+
318+
You _must_ upload your package with ``twine`` and NOT with ``setup.py upload``.
319+
If you have an old version of setuptools or ``distutils``, even if
320+
``python_requires`` is set, metadata may not be uploaded correctyl. See [This
321+
issue](https://github.com/pypa/warehouse/issues/3889) on PyPI repository
322+
316323
## Fix dependant libraries
317324

318325
If you control dependant packages, Make sure to include conditional dependencies

site.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ $(document).ready(function (){
261261
var groups = new vis.DataSet();
262262
var g=0;
263263
var i=0;
264-
for (var gname in data) {
264+
for (var gname in data) {
265265
g++;
266266
groups.add({id: g, content: gname});
267267
gr = data[gname];

0 commit comments

Comments
 (0)