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
The biggest issue with this plan is without a doubt the precompilation of yaml to regex. In the brave new world of pyproject.toml this apparently has to be done via custom build systems.
Additional:
Hynek's Testing & Packaging, strongly recommends moving the code to src/ in order to ensure what's tested is what will be installed, also provides help with setting up multi-version coverage (though there's almost no version-specific codepaths in uap, and of course coverage currently isn't set up; could be useful for yaml but that'll probably become just a data loader per new api #116)
If your package needs a build step, you won’t be able to use Flit. Setuptools is the de-facto standard, but newer tools such as Enscons also cover this case.
The text was updated successfully, but these errors were encountered:
managing artifacts using raw PEP 517 builders seems ill defined and quite unclear / ill-defined / non-standard, it looks like a pluggable frontend like Hatch might be a better idea
hatch does support package-local plugins, it calls them "custom"
hatch has existing plugins with a similar role (e.g. cython) which should serve as inspiration
That may or may not be a bad idea, but it at least sounds pretty interesting.
Basic resources:
The biggest issue with this plan is without a doubt the precompilation of yaml to regex. In the brave new world of pyproject.toml this apparently has to be done via custom build systems.
Additional:
src/
in order to ensure what's tested is what will be installed, also provides help with setting up multi-version coverage (though there's almost no version-specific codepaths in uap, and of course coverage currently isn't set up; could be useful for yaml but that'll probably become just a data loader per new api #116)Various:
The text was updated successfully, but these errors were encountered: