From eb30a5b1bfecff6a9ed79fcf4d6bf021bceda9c3 Mon Sep 17 00:00:00 2001 From: Prince Mendiratta Date: Sat, 3 Dec 2022 07:33:09 +0530 Subject: [PATCH] fix: remove .replit and replit.nix files (#13) Signed-off-by: Prince Mendiratta Signed-off-by: Prince Mendiratta --- .replit | 2 -- replit.nix | 19 ------------------- 2 files changed, 21 deletions(-) delete mode 100644 .replit delete mode 100644 replit.nix diff --git a/.replit b/.replit deleted file mode 100644 index c88f45f..0000000 --- a/.replit +++ /dev/null @@ -1,2 +0,0 @@ -language = "python3" -run = "python main.py" \ No newline at end of file diff --git a/replit.nix b/replit.nix deleted file mode 100644 index 6a4bee2..0000000 --- a/replit.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ pkgs }: { - deps = [ - pkgs.python38Full - pkgs.python38Packages.pytest - ]; - env = { - PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ - # Needed for pandas / numpy - pkgs.stdenv.cc.cc.lib - pkgs.zlib - # Needed for pygame - pkgs.glib - # Needed for matplotlib - pkgs.xorg.libX11 - ]; - PYTHONBIN = "${pkgs.python38Full}/bin/python3.8"; - LANG = "en_US.UTF-8"; - }; -} \ No newline at end of file