-
Notifications
You must be signed in to change notification settings - Fork 363
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
Handle .tar.gz
in pkg url
#3640
Conversation
@@ -17,7 +17,8 @@ namespace mamba::specs | |||
{ | |||
inline static constexpr auto ARCHIVE_EXTENSIONS = std::array{ std::string_view(".tar.bz2"), | |||
std::string_view(".conda"), | |||
std::string_view(".whl") }; | |||
std::string_view(".whl"), | |||
std::string_view(".tar.gz") }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are a number of other potential formats: https://docs.python.org/3.10/distutils/sourcedist.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool! Thanks for the pointer :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will implement them in dedicated PRs if their support is requested.
@@ -17,7 +17,8 @@ namespace mamba::specs | |||
{ | |||
inline static constexpr auto ARCHIVE_EXTENSIONS = std::array{ std::string_view(".tar.bz2"), | |||
std::string_view(".conda"), | |||
std::string_view(".whl") }; | |||
std::string_view(".whl"), | |||
std::string_view(".tar.gz") }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will implement them in dedicated PRs if their support is requested.
Fix #3589