Skip to content

Commit

Permalink
MNT remove requirements files and move it in setup.py (scikit-learn-c…
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre authored Feb 18, 2021
1 parent e39bf01 commit 76abfa4
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 20 deletions.
7 changes: 7 additions & 0 deletions doc/whats_new/v0.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ Bug fixes
even with `validate=False` when calling `fit`.
:pr:`790` by :user:`Guillaume Lemaitre <glemaitre>`.

Maintenance
...........

- Remove requirements files in favour of adding the packages in the
`extras_require` within the `setup.py` file.
:pr:`816` by :user:`Guillaume Lemaitre <glemaitre>`.

Deprecation
...........

Expand Down
2 changes: 0 additions & 2 deletions requirements.dev.txt

This file was deleted.

8 changes: 0 additions & 8 deletions requirements.doc.txt

This file was deleted.

2 changes: 0 additions & 2 deletions requirements.optional.txt

This file was deleted.

3 changes: 0 additions & 3 deletions requirements.test.txt

This file was deleted.

4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@
"joblib>=0.11",
]
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-cov"],
"optional": [
"keras",
"tensorflow",
],
"dev": [
"black",
"flake8",
],
"tests": [
"pytest",
"pytest-cov",
],
"docs": [
"sphinx",
"sphinx-gallery",
Expand Down

0 comments on commit 76abfa4

Please sign in to comment.