lol

release-python.nix: drop darwin and i686-linux, add py35

+3 -2
+3 -2
pkgs/top-level/release-python.nix
··· 6 6 { nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } 7 7 , officialRelease ? false 8 8 , # The platforms for which we build Nixpkgs. 9 - supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] 9 + supportedSystems ? [ "x86_64-linux" ] 10 10 }: 11 11 12 12 with import ./release-lib.nix {inherit supportedSystems; }; ··· 14 14 (mapTestOn { 15 15 pypyPackages = packagePlatforms pkgs.pypyPackages; 16 16 pythonPackages = packagePlatforms pkgs.pythonPackages; 17 + python33Packages = packagePlatforms pkgs.python33Packages; 17 18 python34Packages = packagePlatforms pkgs.python34Packages; 18 - python33Packages = packagePlatforms pkgs.python33Packages; 19 + python35Packages = packagePlatforms pkgs.python35Packages; 19 20 })