Skip to content

Commit

Permalink
Bundling got broken in the revert to Qt 6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dae committed Jan 26, 2025
1 parent 92b1144 commit c398bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 1 addition & 7 deletions build/configure/src/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,7 @@ const PRIMARY_VENV: Venv = Venv {
fn setup_primary_venv(build: &mut Build) -> Result<()> {
let mut qt6_reqs = inputs![
"python/requirements.bundle.txt",
if cfg!(windows) {
"python/requirements.qt6_win.txt"
} else if cfg!(target_os = "macos") {
"python/requirements.qt6_mac.txt"
} else {
"python/requirements.qt6_lin.txt"
}
"python/requirements.qt6_6.txt",
];
if cfg!(windows) {
qt6_reqs = inputs![qt6_reqs, "python/requirements.win.txt"];
Expand Down
1 change: 1 addition & 0 deletions build/configure/src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ use ninja_gen::python::PythonTypecheck;
use ninja_gen::rsync::RsyncFiles;
use ninja_gen::Build;

// When updating Qt, make sure to update the .txt file in bundle.rs as well.
pub fn setup_venv(build: &mut Build) -> Result<()> {
let platform_deps = if cfg!(windows) {
inputs![
Expand Down

0 comments on commit c398bac

Please sign in to comment.