Skip to content

Commit

Permalink
Use Python 3 in build test
Browse files Browse the repository at this point in the history
Override `python` package to point to `python3`, since `python` is the
EOL Python 2.7.
  • Loading branch information
aidalgol committed Nov 18, 2023
1 parent c461c66 commit bf68223
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test-build.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
with import <nixpkgs> {
config.allowUnfree = true;
overlays = [ (import vs-overlay) ];
# Force default Python to 3.x
config.packageOverrides = pkgs: {
python = pkgs.python3;
};
};
runCommand "vs-overlay-plugins-build-test" { buildInputs = [
vapoursynthPlugins.adaptivegrain
Expand Down

0 comments on commit bf68223

Please sign in to comment.