Skip to content

Commit

Permalink
Requirements update (#119)
Browse files Browse the repository at this point in the history
* requirements update

* minor change
  • Loading branch information
jrzkaminski authored Jul 8, 2024
1 parent 3e3405f commit 370a3d2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 22 deletions.
23 changes: 11 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ authors = ["Roman Netrogolov <[email protected]>",
"Yury Kaminsky <[email protected]>"]

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",
Expand All @@ -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]
Expand Down
20 changes: 10 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
gmr>=1.6.2
pgmpy>=0.1.25

0 comments on commit 370a3d2

Please sign in to comment.