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
Scenario: set egg_base to ../ in setup.cfg, build the sdist, thus two {PROJECT}.egg-info directories will be created in ../ and ./ respectively.
Problem: the {PROJECT}.egg-info directory in the current directory doesn't get deleted when cleaning.
Possible solution: Change for e in ['.egg', '.eggs']: (line 92 in janitor.py) to for e in ['.egg', '.eggs', '.egg-info']:
The text was updated successfully, but these errors were encountered:
Scenario: set
egg_base
to../
insetup.cfg
, build thesdist
, thus two{PROJECT}.egg-info
directories will be created in../
and./
respectively.Problem: the
{PROJECT}.egg-info
directory in the current directory doesn't get deleted when cleaning.Possible solution: Change
for e in ['.egg', '.eggs']:
(line 92 injanitor.py
) tofor e in ['.egg', '.eggs', '.egg-info']:
The text was updated successfully, but these errors were encountered: