-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[23.2] Use python-isal for fast zip deflate compression in rocrate export #17342
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ install_requires = | |
h5grove | ||
h5py | ||
isa-rwval | ||
isal | ||
MarkupSafe | ||
msal | ||
mrcfile | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ include_package_data = True | |
install_requires = | ||
galaxy-util | ||
fs | ||
isal | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mvdbeek Do you remember why you added the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's used in https://github.com/galaxyproject/galaxy/blob/dev/lib/galaxy/util/compression_utils.py#L361-L372 or am I missing something ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, why it's used in the files package ? I don't know, it should be enough to just have it be a dependency of data I thuok ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, exactly. I'll drop it in #18449 . |
||
typing-extensions | ||
packages = find: | ||
python_requires = >=3.7 | ||
|
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.
I think this works only because this files also imports
from galaxy.util.compression_utils import CompressedFile
. Should we re-exportshutil
(maybe asgx_shutil
) inlib/galaxy/util/compression_utils.py
and import it in this file from there?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.
yes
makes sense, sure