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

feat: align with upcoming virtual package cep #1028

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: intradocs
baszalmstra committed Jan 15, 2025

Verified

This commit was signed with the committer’s verified signature.
yegor256 Yegor Bugayenko
commit 2181281296d7c45ab99f4cd202d6d49822e90b00
2 changes: 1 addition & 1 deletion crates/rattler_virtual_packages/src/win.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Low-level functions to detect the Windows version on the system. See
//! [`crate::windows::windows_version`].
//! [`windows_version`].

use once_cell::sync::OnceCell;
use rattler_conda_types::Version;
@@ -10,7 +10,7 @@
/// Returns `None` if the Windows version could not be determined. Note that
/// this does not mean the current platform is not Windows.
///
/// Detection of the Windows version is implemented using the [`winver`] crate.

Check failure on line 13 in crates/rattler_virtual_packages/src/win.rs

GitHub Actions / Check intra-doc links

unresolved link to `winver`
pub fn windows_version() -> Option<Version> {
static DETECTED_WINDOWS_VERSION: OnceCell<Option<Version>> = OnceCell::new();
DETECTED_WINDOWS_VERSION
Loading