Issue12348
Created on 2011-06-16 15:21 by tarek, last changed 2022-04-11 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg138449 - (view) | Author: Tarek Ziadé (tarek) * ![]() |
Date: 2011-06-16 15:21 | |
the PyPI server deals with the package names case issue: if you get webob, it'll find WebOb. That's not true for mirrors, so we need to fallback to the global index when "webob" is not found under simple/webob/, and look for the name with a different case. |
|||
| msg138452 - (view) | Author: Tarek Ziadé (tarek) * ![]() |
Date: 2011-06-16 15:27 | |
see also http://mail.python.org/pipermail/catalog-sig/2011-June/003793.html |
|||
| msg138546 - (view) | Author: Filip Gruszczyński (gruszczy) | Date: 2011-06-17 19:07 | |
When I started looking at this I noticed following behaviour:
>>> from packaging.pypi.simple import Crawler
>>> client = Crawler()
>>> client.get_releases('webob')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/gruszczy/Projects/python/Lib/packaging/pypi/simple.py", line 192, in get_releases
self._process_index_page(predicate.name)
packaging.pypi.errors.ProjectNotFound
>>> client.search_projects('webob')
[<Project "WebOb">, <Project "webob_view">, <Project "yafowil.webob">]
>>> client.get_releases('webob')
<Project "WebOb">
Shouldn't this be made consistent?
|
|||
| msg199806 - (view) | Author: Georg Brandl (georg.brandl) * ![]() |
Date: 2013-10-13 21:25 | |
Closing as a packaging-related bug. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:57:18 | admin | set | github: 56557 |
| 2013-10-13 21:25:21 | georg.brandl | set | status: open -> closed nosy:
+ georg.brandl resolution: out of date |
| 2011-06-17 19:07:50 | gruszczy | set | nosy:
+ gruszczy messages: + msg138546 |
| 2011-06-17 17:25:25 | eric.araujo | set | nosy:
+ eric.araujo title: case sensitivness in packaging.pypi.simple.Crawler -> case sensitivity in packaging.pypi.simple.Crawler assignee: tarek versions: + Python 3.3 components: + Distutils2 |
| 2011-06-16 15:27:56 | tarek | set | messages: + msg138452 |
| 2011-06-16 15:21:07 | tarek | create | |
