Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ jobs:
- name: Run Checks
run: |
python tests/scripts/check_pip.py missing cvxpy
python tests/scripts/check_pip.py contains scikit-learn
python tests/scripts/check_pip.py installed scikit-learn
python tests/scripts/import_all.py
- name: Install cvxpy
run: |
python -m pip install -e ".[cvxpy]"
- name: Run Checks
run: |
python tests/scripts/check_pip.py contains cvxpy scikit-learn
python tests/scripts/check_pip.py installed cvxpy scikit-learn
python tests/scripts/import_all.py
- name: Install All
run: |
python -m pip install -e ".[all]"
- name: Run Checks
run: |
python tests/scripts/check_pip.py contains cvxpy scikit-learn
python tests/scripts/check_pip.py installed cvxpy formulaic patsy scikit-learn umap-learn
- name: Docs can Build
run: |
sudo apt-get update && sudo apt-get install pandoc
python -m pip install -e ".[docs]"
sphinx-build doc docs
mkdocs build
Comment on lines 46 to +50
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as a final step, could we add a CI file like this one?

@koaning how's that different from the one we have here?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah! I somehow missed that. LGTM then :)

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ dmypy.json
# editor
.vscode
Copy link
Owner

@koaning koaning Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CleanShot 2023-10-30 at 07 06 02@2x

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And I think we can move the Rstudio bit to a place where it's less front-and-center. Not that many folks will use it.

Copy link
Collaborator Author

@FBruzzesi FBruzzesi Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should RStudio queue on the user guide? At the end of the day it is a tutorial just as the others?

.idea
docs/
.DS_Store

# Local Netlify folder
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ precommit:
pre-commit run

docs:
rm -rf doc/.ipynb_checkpoints
sphinx-build -a -E doc docs
pip install -e ".[docs]"
mkdocs serve

docs-deploy: docs
netlify deploy --dir=docs --prod
Expand All @@ -34,7 +34,6 @@ clean:
rm -rf .pytest_cache
rm -rf build
rm -rf dist
rm -rf docs
rm -rf scikit_lego.egg-info
rm -rf .ipynb_checkpoints
rm -rf .coverage*
Expand Down
19 changes: 0 additions & 19 deletions doc/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions doc/_static/css/custom.css

This file was deleted.

Binary file removed doc/_static/decay1.png
Binary file not shown.
Binary file removed doc/_static/decay2.png
Binary file not shown.
Binary file removed doc/_static/grouped-chick-1.png
Binary file not shown.
Binary file removed doc/_static/grouped-chick-2.png
Binary file not shown.
Binary file removed doc/_static/grouped-chick-3.png
Binary file not shown.
Binary file removed doc/_static/grouped-model.png
Binary file not shown.
Binary file removed doc/_static/lowess-base.png
Binary file not shown.
Binary file removed doc/_static/lowess-pred-1.gif
Binary file not shown.
Binary file removed doc/_static/lowess-pred-2.gif
Binary file not shown.
Binary file removed doc/_static/lowess-rolling.gif
Binary file not shown.
Binary file removed doc/_static/lowess-span-1.png
Binary file not shown.
Binary file removed doc/_static/lowess-span-2.png
Binary file not shown.
Binary file removed doc/_static/lowess-two-predictions.gif
Binary file not shown.
Binary file removed doc/_static/naive-bayes-1.png
Binary file not shown.
Binary file removed doc/_static/naive-bayes-2.png
Binary file not shown.
Binary file removed doc/_static/naive-bayes-22.png
Binary file not shown.
Binary file removed doc/_static/naive-bayes-3.png
Binary file not shown.
Binary file removed doc/_static/outlier-clf.png
Binary file not shown.
Binary file removed doc/_static/outlier-mixture-stddev.png
Binary file not shown.
Binary file removed doc/_static/outlier-mixture-threshold.png
Binary file not shown.
Binary file removed doc/_static/outlier-mixture.png
Binary file not shown.
Binary file removed doc/_static/skewed-data.png
Binary file not shown.
Binary file removed doc/_static/threshold-results.png
Binary file not shown.
Binary file removed doc/_static/timegapsplit.png
Binary file not shown.
14 changes: 0 additions & 14 deletions doc/_templates/layout.html

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/base.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/common.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/datasets.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/decomposition.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/dummy.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/linear_model.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/meta.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/metrics.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/mixture.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/model_selection.rst

This file was deleted.

20 changes: 0 additions & 20 deletions doc/api/modules.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/naive_bayes.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/pandas_utils.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/pipeline.rst

This file was deleted.

11 changes: 0 additions & 11 deletions doc/api/preprocessing.rst

This file was deleted.

Loading