[issue15266] Perform the same checks as PyPI for Description field

2021-02-03 Thread Steve Dower


Steve Dower  added the comment:

Distutils is now deprecated (see PEP 632) and all tagged issues are being 
closed. From now until removal, only release blocking issues will be considered 
for distutils.

If this issue does not relate to distutils, please remove the component and 
reopen it. If you believe it still requires a fix, most likely the issue should 
be re-reported at https://github.com/pypa/setuptools

--
nosy: +steve.dower
resolution:  -> out of date
stage: needs patch -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-08-12 Thread Giovanni Cappellotto


Change by Giovanni Cappellotto :


--
nosy:  -potomak

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-08-12 Thread STINNER Victor


Change by STINNER Victor :


--
keywords:  -easy

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-08-12 Thread STINNER Victor


STINNER Victor  added the comment:

> Why are can I still find these issues in the "Easy issues" list?

My bad... I only added a comment but forgot to remove the easy keyword. It's 
now removed ;-)

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-08-04 Thread Joannah Nanjekye


Joannah Nanjekye  added the comment:

@Giovanni ,

If you look closely, the issue still has the easy issue label that is why you 
still see it in the "Easy issues" list. Which means he has not removed the 
label yet.

--
nosy: +nanjekyejoannah

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-08-03 Thread Giovanni Cappellotto


Giovanni Cappellotto  added the comment:

Hi Victor,

This is the 3rd issue in a row I found in the "Easy issues" list where you 
added a comment saying

> I remove the "Easy" label

Why are can I still find these issues in the "Easy issues" list?

Do you mean that you already removed the "Easy" label or that you plan to 
remove it?

--
nosy: +potomak

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2019-07-29 Thread STINNER Victor


STINNER Victor  added the comment:

This issue is 7 years old: it's far from being "newcomer friendly", I remove 
the "Easy" label.

--
nosy: +vstinner

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2014-07-13 Thread Wichert Akkerman

Wichert Akkerman added the comment:

Éric is not quite correct: I currently have a package where "python setup.py 
check" does not show any error, but PyPI still refuses to format my long 
description. Likewise "python setup.py --long-description | rst2html-2.7.py > 
/dev/null" also does not reveal any errors or warnings, so I am at a completely 
loss as to why PyPI refuses to format my documentation.

--
nosy: +wichert

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2014-03-12 Thread Éric Araujo

Éric Araujo added the comment:

Reclassifying as distutils feature request.

--
assignee: eric.araujo -> 
components: +Distutils -Distutils2
versions: +Python 3.5 -3rd party

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2012-07-07 Thread Martin v . Löwis

Martin v. Löwis  added the comment:

> One maintenance issue is the possible discrepancy between PyPI’s  
> checks and distutils2’s; if the PyPI maintainers agree to announce  
> all changes to catalog-sig it could work (just like for classifiers).

We can certainly try to remember, but I expect this is prone to fail:
the next change may well be five years from now, at which point nobody
remembers that distutils2 also has such a check.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2012-07-06 Thread Chris Jerdonek

Chris Jerdonek  added the comment:

With regard to the maintenance issue, what about the idea of aiming for PyPI to 
include that logic in a separately packaged module?  Then there would be no 
need to cut and paste -- just include the right version.

If that were done, depending on how the pysetup change is done, users might be 
able to use PyPI's latest version even if pysetup was out of synch and hadn't 
been updated yet.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15266] Perform the same checks as PyPI for Description field

2012-07-06 Thread Éric Araujo

Éric Araujo  added the comment:

This easy way exists: “pysetup run check” checks the rst syntax; retitling.

Basically it’s a matter of using the same settings (no file inclusion, etc.) as 
PyPI and checking the URI schemes.

One maintenance issue is the possible discrepancy between PyPI’s checks and 
distutils2’s; if the PyPI maintainers agree to announce all changes to 
catalog-sig it could work (just like for classifiers).

--
keywords: +easy
stage:  -> needs patch
title: Provide an easy way to check a reST long_description for PyPI -> Perform 
the same checks as PyPI for Description field
type:  -> behavior
versions: +3rd party

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com