Skip to content

Commit

Permalink
chore: bump py-rattler 0.5.0 (conda#629)
Browse files Browse the repository at this point in the history
Removed the version from pixi.toml as well because I dont think it
serves a purpose.
  • Loading branch information
baszalmstra authored Apr 26, 2024
1 parent d8f2806 commit cac9d14
Show file tree
Hide file tree
Showing 7 changed files with 380 additions and 48 deletions.
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

0 comments on commit cac9d14

Please sign in to comment.