Add pandas to nix-shell instead of poetry

This commit is contained in:
coolneng 2021-01-01 21:54:28 +01:00
parent e05ccdabb9
commit 0471cb0ab8
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 2 additions and 5 deletions

View File

@ -7,14 +7,11 @@ authors = ["coolneng <akasroua@gmail.com>"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.8" python = "^3.8"
scikit-learn = "^0.24.0" scikit-learn = "^0.24.0"
pandas = "^1.2.0"
imbalanced-learn = "^0.7.0" imbalanced-learn = "^0.7.0"
numpy = "^1.19.4"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
competition = "processing:main"

View File

@ -2,4 +2,4 @@
with pkgs; with pkgs;
mkShell { buildInputs = [ python38 poetry ]; } mkShell { buildInputs = [ python38 python38Packages.pandas poetry ]; }