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

docs: Fix linux minimum version in project_configuration docs #1888

Merged
merged 1 commit into from
Aug 22, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/reference/project_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Currently, the specified **defaults** are the same as [conda-lock](https://githu
=== "Linux"
```toml title="default system requirements for linux"
[system-requirements]
linux = "5.10"
linux = "4.18"
libc = { family="glibc", version="2.28" }
```

Expand All @@ -265,7 +265,7 @@ For example, when installing environments on old versions of linux.
You may encounter the following error:

```
× The current system has a mismatching virtual package. The project requires '__linux' to be at least version '5.10' but the system has version '4.12.14'
× The current system has a mismatching virtual package. The project requires '__linux' to be at least version '4.18' but the system has version '4.12.14'
```

This suggests that the system requirements for the project should be lowered.
Expand Down
Loading