Merge pull request #202797 from dotlambda/z3-python3

z3: use python3

7c6f434c b72b8b94 2ba54165

Changed files
+3 -3
pkgs
development
interpreters
top-level
+2 -2
pkgs/development/interpreters/acl2/default.nix
···
{ lib, stdenv, callPackage, fetchFromGitHub, runCommandLocal, makeWrapper, substituteAll
, sbcl, bash, which, perl, hostname
-
, openssl, glucose, minisat, abc-verifier, z3, python2
+
, openssl, glucose, minisat, abc-verifier, z3, python3
, certifyBooks ? true
} @ args:
···
which perl hostname
# Some of the books require one or more of these external tools:
glucose minisat abc-verifier libipasir
-
z3 (python2.withPackages (ps: [ ps.z3 ]))
+
z3 (python3.withPackages (ps: [ ps.z3 ]))
];
# NOTE: Parallel building can be memory-intensive depending on the number of
+1 -1
pkgs/top-level/all-packages.nix
···
-
inherit (callPackages ../applications/science/logic/z3 { python = python2; })
+
inherit (callPackages ../applications/science/logic/z3 { python = python3; })
z3_4_11
z3_4_8
z3_4_7;