Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinier Koops authored Mar 26, 2024
1 parent 9995045 commit 664b2f0
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ dev = [
"isort>=5.12.0",
"codespell>=2.2.4",
"ruff>=0.2.2",
"lightgbm>=3.3.0",
# https://github.com/catboost/catboost/issues/2371
"catboost>=1.2 ; python_version != '3.8'",
"catboost<1.2 ; python_version == '3.8'",
"xgboost>=1.5.0",
"scipy>=1.4.0",
]
docs = [
"mkdocs>=1.5.3",
Expand All @@ -72,16 +78,9 @@ docs = [
"mkdocstrings>=0.24.1",
"mkdocstrings-python>=1.8.0",
]
extras = [
"lightgbm>=3.3.0",
# https://github.com/catboost/catboost/issues/2371
"catboost>=1.2 ; python_version != '3.8'",
"catboost<1.2 ; python_version == '3.8'",
"xgboost>=1.5.0",
"scipy>=1.4.0",
]

# Separating these allow for more install flexibility.
all = ["probatus[dev,docs,extras]"]
all = ["probatus[dev,docs]"]

[tool.setuptools.packages.find]
exclude = ["tests", "notebooks", "docs"]
Expand Down

0 comments on commit 664b2f0

Please sign in to comment.