Edgewall Software

Changes between Initial Version and Version 1 of Ticket #12282


Ignore:
Timestamp:
Dec 18, 2015, 1:25:38 AM (8 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12282

    • Property Keywords wheel added
  • Ticket #12282 – Description

    initial v1  
    11I've installed Trac with `pip`, which defaults to installing a wheel.
    2 {{{
     2{{{#!sh
    33$pip --version
    44pip 7.1.2 from /Users/rjollos/Documents/Workspace/trac-dev/next-ticket/pve/lib/python2.7/site-packages (python 2.7)
     
    1616
    1717Now there is a traceback when Trac is started:
    18 {{{
     18{{{#!pycon
    191914:38:59 Trac[loader] ERROR: Skipping "trac.mimeview.pygments = trac.mimeview.pygments [pygments]":
    2020Traceback (most recent call last):
     
    3030}}}
    3131
    32 Using the `--no-use-wheel` option there is no traceback:
    33 {{{
     32When installed with `--no-use-wheel` there is no traceback:
     33{{{#!pycon
    343415:54:42 Trac[loader] DEBUG: Skipping "trac.mimeview.pygments = trac.mimeview.pygments [pygments]": ("DistributionNotFound: The 'Pygments>=0.6' distribution was not found and is required by the application" not found)
    3535}}}
    3636
    37 It seems we are encountering a [https://bitbucket.org/pypa/setuptools/issues/362/case-sensitive-extras-not-handled-for-dist reported issue] with setuptools. I get the same result seen in that ticket.
     37It seems we are encountering a [https://bitbucket.org/pypa/setuptools/issues/362/case-sensitive-extras-not-handled-for-dist reported issue] with setuptools. I get the same results seen in that ticket.
    3838
    3939When a wheel is installed:
     
    7979}}}
    8080
    81 As a workaround we should perhaps just use lowercase identifiers in `extras_require`: [browser:tags/trac-1.0.9/setup.py@:106-111#L105].
     81To work around the issue for all extra dependencies we should consider using lowercase identifiers in `extras_require`: [browser:tags/trac-1.0.9/setup.py@:106-111#L105].
     82
     83See also #11877.