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
and running pdm export --without-hashes results in a duplicated pydantic dependency (once with the email extra). This imo is not needed (and breaks tools like pex) because the export will include the dependencies from the extras anyways…
Actual behavior
pdm -v export --without-hashes
The exported requirements file is no longer cross-platform. Using it on other platforms may cause unexpected result.
dnspython==2.1.0
email-validator==1.1.3
fhir.resources==6.1.0
idna==3.3
pydantic==1.8.2
pydantic[email]==1.8.2
typing-extensions==4.0.0
Expected behavior
pdm -v export --without-hashes
The exported requirements file is no longer cross-platform. Using it on other platforms may cause unexpected result.
dnspython==2.1.0
email-validator==1.1.3
fhir.resources==6.1.0
idna==3.3
pydantic==1.8.2
typing-extensions==4.0.0
Make sure you run commands with
-v
flag before pasting the output.Steps to reproduce
Using the following pyproject.toml:
and running
pdm export --without-hashes
results in a duplicatedpydantic
dependency (once with theemail
extra). This imo is not needed (and breaks tools like pex) because the export will include the dependencies from the extras anyways…Actual behavior
Expected behavior
Environment Information
The text was updated successfully, but these errors were encountered: