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
I noticed that pdm-backend builds wheels with mode 0o600, and sdists with mode 0o644. I would have expected them to have the same permissions.
From what I can gather from the source code, the wheels have the same mode as tempfile.NamedTemporaryFile, which is used to create the ZIP File, that is then copied using shutil.move() to the target.
Is this the intended behavior ?
Note: It seems other builders use 0o644 for wheels.
The text was updated successfully, but these errors were encountered:
Hi,
I noticed that
pdm-backend
builds wheels with mode0o600
, and sdists with mode0o644
. I would have expected them to have the same permissions.From what I can gather from the source code, the wheels have the same mode as
tempfile.NamedTemporaryFile
, which is used to create the ZIP File, that is then copied usingshutil.move()
to the target.Is this the intended behavior ?
Note: It seems other builders use
0o644
for wheels.The text was updated successfully, but these errors were encountered: