Skip to content
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
7 changes: 7 additions & 0 deletions builders/ubuntu-python-builder.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,12 @@ class UbuntuPythonBuilder : NixPythonBuilder {

### On Ubuntu-1804, libgdbm-compat-dev has older modules that are no longer in libgdbm-dev
Execute-Command -Command "sudo apt install -y libgdbm-compat-dev"

### Python 3.10-3.12 need libcrypt-dev (crypt.h) which is not installed by default on Ubuntu 26.04
if ([semver]"$($this.Version.Major).$($this.Version.Minor)" -ge [semver]"3.10" -and
[semver]"$($this.Version.Major).$($this.Version.Minor)" -lt [semver]"3.13" -and
$this.Platform -match "26\.04") {
Comment thread
priya-kinthali marked this conversation as resolved.
Execute-Command -Command "sudo apt install -y libcrypt-dev"
}
}
}
Loading