You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> from requirementslib import Requirement
>>> r = Requirement.from_line('plette[validation] (>=0.1.1)')
>>> print(r.extras)
[]
>>> r = Requirement.from_line('plette[validation]')
>>> print(r.extras)
['validation']
The text was updated successfully, but these errors were encountered:
uranusjr
changed the title
New dependencygrabber branch no longer parse extras with specifiers
New requirement parsing no longer handle extras with specifiers
Aug 19, 2018
The text was updated successfully, but these errors were encountered: