From 370a3d2bdb4968c510b03c2313e1b9781ff9b551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Kami=C5=84ski?= <86363785+jrzkaminski@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:13:10 +0300 Subject: [PATCH 1/5] Requirements update (#119) * requirements update * minor change --- pyproject.toml | 23 +++++++++++------------ requirements.txt | 20 ++++++++++---------- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3c14da0..b5c93c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,8 +10,8 @@ authors = ["Roman Netrogolov ", "Yury Kaminsky "] license = "BSD-3-Clause" -readme = "readme.rst" -repository = "https://github.com/ITMO-NSS-team/BAMT" +readme = "readme.md" +repository = "https://github.com/aimclub/BAMT" classifiers = ["Programming Language :: Python :: 3", "Development Status :: 3 - Alpha", @@ -23,18 +23,17 @@ packages = [ [tool.poetry.dependencies] python = "^3.10" -numpy = "^1.26.0" -matplotlib = "^3.8.0" -pandas = "^2.2.0" -gmr = "1.6.2" +numpy = "^2.0.0" +pandas = "^2.2.2" scikit-learn = "^1.4.2" -scipy = "^1.13.0" -pyvis = "^0.3.1" -missingno = "^0.5.1" +scipy = "^1.14.0" +xgboost = "^2.0.0" +catboost = "^2.0.0" +matplotlib = "^3.9.0" +pyvis = "^0.3.0" +thegolem = "^0.4.0" +gmr = "^1.6.2" pgmpy = "^0.1.25" -thegolem = "^0.3.3" -xgboost = ">=1.7.6" -catboost = ">=2.0.0" lightgbm = {version = ">=3.3.5", optional = true } [tool.poetry.extras] diff --git a/requirements.txt b/requirements.txt index de00482..1336d16 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,21 +1,21 @@ # Data Manipulation -numpy>=1.26.0 -pandas>=2.2.0 +numpy>=2.0.0 +pandas>=2.2.2 # Graph manipulation networkx>=3.3 thegolem>=0.4.0 # ML modeling frameworks -scikit-learn>=1.4.2 -scipy>=1.13.0 -catboost>=1.2.1 -xgboost>=2.0.0 +scikit-learn>=1.5.0 +scipy>=1.14.0 +catboost>=1.2.0 +xgboost>=2.1.0 # visualization -matplotlib>=3.8.0 -pyvis>=0.3.1 +matplotlib>=3.9.0 +pyvis>=0.3.0 # TODO: exclude these libraries -gmr==1.6.2 -pgmpy==0.1.25 \ No newline at end of file +gmr>=1.6.2 +pgmpy>=0.1.25 \ No newline at end of file From 40cd541f2d92d216693f1b42f3d12650bfaa477e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Kami=C5=84ski?= <86363785+jrzkaminski@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:18:38 +0300 Subject: [PATCH 2/5] 2.0.0 dev (#120) * requirements update * minor change From c49239a550cb12b33f4b56b83c5e8b0bd770f9d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Kami=C5=84ski?= <86363785+jrzkaminski@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:28:14 +0300 Subject: [PATCH 3/5] Create index.md --- docs/index.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/index.md diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..000ea34 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,17 @@ +# Welcome to MkDocs + +For full documentation visit [mkdocs.org](https://www.mkdocs.org). + +## Commands + +* `mkdocs new [dir-name]` - Create a new project. +* `mkdocs serve` - Start the live-reloading docs server. +* `mkdocs build` - Build the documentation site. +* `mkdocs -h` - Print help message and exit. + +## Project layout + + mkdocs.yml # The configuration file. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. From b766e0c9ff0f8df28c4b083273123328f63d04db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Kami=C5=84ski?= <86363785+jrzkaminski@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:29:03 +0300 Subject: [PATCH 4/5] Update pyproject.toml --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b5c93c8..c3a80ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,8 +30,9 @@ scipy = "^1.14.0" xgboost = "^2.0.0" catboost = "^2.0.0" matplotlib = "^3.9.0" -pyvis = "^0.3.0" +pyvis = "^0.2.0" thegolem = "^0.4.0" +rich = "^13.0.0" gmr = "^1.6.2" pgmpy = "^0.1.25" lightgbm = {version = ">=3.3.5", optional = true } From d89e91d03f56526d656be7b564dc0475ecec7c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerzy=20Kami=C5=84ski?= <86363785+jrzkaminski@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:29:28 +0300 Subject: [PATCH 5/5] Update requirements.txt --- requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1336d16..58a29b0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,8 +14,9 @@ xgboost>=2.1.0 # visualization matplotlib>=3.9.0 -pyvis>=0.3.0 +pyvis>=0.2.0 +rich>=13.0.0 # TODO: exclude these libraries gmr>=1.6.2 -pgmpy>=0.1.25 \ No newline at end of file +pgmpy>=0.1.25