Skip to content

Commit

Permalink
requirements update
Browse files Browse the repository at this point in the history
  • Loading branch information
jrzkaminski committed Apr 27, 2024
1 parent 6b1462d commit 5d0324e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 26 deletions.
Empty file.
23 changes: 11 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "BAMT"
version = "1.2.01"
version = "2.0.0"
description = "data modeling and analysis tool based on Bayesian networks"
authors = ["Roman Netrogolov <[email protected]>",
"Irina Deeva <[email protected]>",
Expand All @@ -22,20 +22,19 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.9,<3.11"
setuptools = "65.6.3"
numpy = ">=1.24.2"
matplotlib = "3.6.2"
pandas = "2.0.3"
python = "^3.10"
numpy = "^1.26.0"
matplotlib = "^3.8.0"
pandas = "^2.2.0"
gmr = "1.6.2"
scikit-learn = "^1.2.0"
scipy = "^1.8.0"
pyvis = ">=0.2.1"
scikit-learn = "^1.4.2"
scipy = "^1.13.0"
pyvis = "^0.3.1"
missingno = "^0.5.1"
pgmpy = "0.1.20"
thegolem = ">=0.3.3"
pgmpy = "^0.1.20"
thegolem = "^0.3.3"
xgboost = ">=1.7.6"
catboost = ">=1.0.6"
catboost = ">=2.0.0"
lightgbm = {version = ">=3.3.5", optional = true }

[tool.poetry.extras]
Expand Down
34 changes: 20 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
numpy>=1.24.2
matplotlib==3.6.2
pandas>=2.0.0
# Data Manipulation
numpy>=1.26.0
pandas>=2.2.0

# 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

# visualization
matplotlib>=3.8.0
pyvis>=0.3.1

# TODO: exclude these libraries
gmr==1.6.2
scikit-learn>=1.2.0
scipy>=1.9.3
pyvis>=0.2.1
pgmpy==0.1.20
catboost>=1.0.6
joblib>=1.1.1
networkx>=3.1
tqdm>=4.65.0
thegolem>=0.3.3
typing>=3.7.4.3
xgboost>=1.7.6
pgmpy==0.1.20

0 comments on commit 5d0324e

Please sign in to comment.