Skip to content
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

chore: bump py-rattler 0.5.0 #629

Merged
merged 4 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ jobs:
path: py-rattler/dist

macos-x86_64:
runs-on: macos-latest
runs-on: macos-13 # x86_64 runner
name: Build x86_64-macos
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 2 additions & 3 deletions crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ readme.workspace = true

[features]
default = ["native-tls"]
native-tls = ['reqwest/native-tls', "google-cloud-auth/default-tls"]
rustls-tls = ['reqwest/rustls-tls', "google-cloud-auth/rustls-tls"]
gcs = ["google-cloud-auth"]
native-tls = ['reqwest/native-tls', "google-cloud-auth?/default-tls"]
rustls-tls = ['reqwest/rustls-tls', "google-cloud-auth?/rustls-tls"]

[dependencies]
anyhow = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler_networking/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ pub use authentication_storage::{authentication::Authentication, storage::Authen
pub use mirror_middleware::MirrorMiddleware;
pub use oci_middleware::OciMiddleware;

#[cfg(feature = "gcs")]
#[cfg(feature = "google-cloud-auth")]
pub mod gcs_middleware;
#[cfg(feature = "gcs")]
#[cfg(feature = "google-cloud-auth")]
pub use gcs_middleware::GCSMiddleware;

pub mod authentication_middleware;
Expand Down
Loading
Loading