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
Haven't investigated this, but it seems that after an upgrade of pip itself, there's now lots of .pyc files in dist-packages/ (auto-populated by pip in setup.py). I tried cleaning them both before building and by adding a clean_pyc() function that runs on the dynamically created dist-packages/ dir. No luck.
It didn't use to be so, for instance here's the output from packaging the deb:
...
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/js_reverse_settings.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/views.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/__init__.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/models.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/management/__init__.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/management/commands/collectstatic_js_reverse.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/management/commands/__init__.pyc
dpkg-source: warning: ignoring deletion of file dist-packages/django_js_reverse/templatetags/__init__.pyc
The text was updated successfully, but these errors were encountered:
Haven't investigated this, but it seems that after an upgrade of pip itself, there's now lots of .pyc files in
dist-packages/
(auto-populated by pip in setup.py). I tried cleaning them both before building and by adding aclean_pyc()
function that runs on the dynamically createddist-packages/
dir. No luck.It didn't use to be so, for instance here's the output from packaging the deb:
The text was updated successfully, but these errors were encountered: