-
Notifications
You must be signed in to change notification settings - Fork 9
Add S3 support #199
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
Add S3 support #199
Changes from all commits
584ff7d
88c51c1
85849c2
bbc845e
2bfbeae
f3824fe
e6f85bd
5a5b398
e6e8784
c05fe46
2ada8ae
597ac0d
f196344
bc035a3
c9df5bb
bb2fbeb
745f836
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 |
|---|---|---|
|
|
@@ -20,7 +20,6 @@ fn main() { | |
|
|
||
| let dst = cmake::Config::new("acquire-common") | ||
| .profile("RelWithDebInfo") | ||
| .static_crt(true) | ||
|
Collaborator
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. Why do we no longer link against the static version of the C runtime? How does it relate to the changes in this PR?
Member
Author
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. This looks like an artifact from some older experimenting with the MSVC runtime. This change shouldn't be there. |
||
| .define("NOTEST", "TRUE") | ||
| .define("NO_UNIT_TESTS", "TRUE") | ||
| .define("NO_EXAMPLES", "TRUE") | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,7 @@ testing = [ | |
| "dask", | ||
| "ome-zarr", | ||
| "ruff", | ||
| "python-dotenv" | ||
| ] | ||
|
|
||
| [project.entry-points."napari.manifest"] | ||
|
|
||
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.
Which submodule do we need to check out again for this PR?
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 need to check out acquire-common. We weren't building before this, so we didn't need it.