Closed tashrifbillah closed 6 years ago
python_env/shell.nix has python27 in it. Given we are making the pipeline python3.6 compatible, is the above right?
python_env/shell.nix
python27
{ pkgs ? import <nixpkgs> {} }: (pkgs.python27.buildEnv.override { extraLibs = builtins.attrValues (import ./_pip_packages.nix { inherit (pkgs) fetchurl; inherit (pkgs.python27Packages) buildPythonPackage; }); }).env # with import <nixpkgs> {}; # (pkgs.python27.withPackages (ps: [ps.plumbum ps.future ps.numpy ps.pandas ps.ipython readline])). env
I have a sense that make conda doesn't use shell.nix rather uses environment36.yml. Still, bringing to attention.
make conda
shell.nix
environment36.yml
You can remove shell.nix.
python_env/shell.nix
haspython27
in it. Given we are making the pipeline python3.6 compatible, is the above right?I have a sense that
make conda
doesn't useshell.nix
rather usesenvironment36.yml
. Still, bringing to attention.