-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relax the *.mo check #38
Comments
This is complicated: we may want *.mo (created during setup.py sdist) to be in the sdist but not in the VCS, and we shouldn't warn about that. |
-1 Once again, why put generated files in your |
In this particular example the .mo files aren't generated -- they're test data for the .mo parser shipped in the package. |
@tysonclugg An sdist is a perfectly fine way of distributing packages. Wheels are nice, but for example not yet usable with buildout (sadly). When creating a distribution that has Yes, it is called a 'source distribution', but that does not mean only version controlled files should end up there. For me a source distribution is simply a non-binary distribution. I might be stretching the definition of non-binary by including binary |
@mgedmin Maybe
|
Some Zope packages have .mo files in their test directories. Those are fine to include in the sdist.
Currently check-manifest tells you they shouldn't be in the VCS (which is wrong, for that particular use case), and it doesn't warn you if they're not included in the sdist (which is also wrong).
The text was updated successfully, but these errors were encountered: