data_dir
lacks optional build tag
#193
Labels
component: destinations
Related to WheelDestination and friends
type: bug
A confirmed bug or unintended behavior
This is related to #171 but this issue impacts all wheels with a build tag and data files.
For example, using the following command to create a wheel for a package named
foo
with version 0.4.2:will create a wheel named
foo-0.4.2-1337-py3-none-any.whl
. Thebuild_tag
in:installer/src/installer/utils.py
Lines 66 to 68 in 444e529
will be
1337
.Data files in the wheel will have paths such as
foo-0.4.2-1337.data/some_folder/some_file.txt
. Due to the implementation ofdata_dir
:installer/src/installer/sources.py
Lines 49 to 52 in 444e529
we'll thus have the following variable values here:
installer/src/installer/_core.py
Line 43 in 444e529
Can the implementation of
data_dir
be changed to take into account the wheel's build tag?Environment:
The text was updated successfully, but these errors were encountered: