Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up config & envs #220

Merged
merged 1 commit into from
Apr 12, 2022
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
repos:
- repo: https://github.com/psf/black
rev: 21.5b0
rev: 22.3.0
hooks:
- id: black
exclude: (versioneer.py|_version.py)

- repo: https://github.com/timothycrosley/isort
rev: 5.8.0
rev: 5.10.1
hooks:
- id: isort

- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.1
rev: 3.9.2
hooks:
- id: flake8
3 changes: 1 addition & 2 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ channels:
- conda-forge
dependencies:
- python>=3.8
- pip

- jupyter-server-proxy
- notebook

- rubicon-ml
- scikit-learn
22 changes: 13 additions & 9 deletions docs/docs-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: rubicon-ml-docs
channels:
- conda-forge
dependencies:
- python=3.9
- python>=3.8
- pip

# for building the docs
- black
Expand All @@ -13,12 +14,15 @@ dependencies:
- sphinx
- sphinx-copybutton

# only install necessary rubicon-ml dependencies
- dash>=2.0.0
- dash-bootstrap-components>=1.0.0
- dask>=2.12.0
- pandas>=1.0
- fsspec>=2021.4.0
- intake>=0.5.2
- prefect>=0.12.0
# install rubicon-ml dependencies
# so local pip install doesn't
- dash<=2.3.1,>=2.0.0
- dash-bootstrap-components<=1.1.0,>=1.0.0
- dask[dataframe]<=2022.4.0,>=2.12.0
- fsspec<=2022.3.0,>=2021.4.0
- intake[dataframe]<=0.6.5,>=0.5.2
- pandas<=1.4.2,>=1.0.0
- prefect<=1.2.0,>=0.12.0
- pyarrow<=7.0.0,>=0.18.0
- PyYAML<=6.0,>=5.4.0
- scikit-learn
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- s3fs<=2022.3.0,>=0.4

# for prefect workflows
- prefect<=1.1.0,>=0.12.0
- prefect<=1.2.0,>=0.12.0

# for viz
- dash<=2.3.1,>=2.0.0
Expand Down
2 changes: 0 additions & 2 deletions notebooks/user-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ dependencies:

- jupyterlab
- rubicon-ml

# for scikit-learn examples
- scikit-learn
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ all =
console_scripts =
rubicon_ml = rubicon_ml.cli:cli
intake.drivers =
rubicon_ml_project = rubicon_ml.intake_rubicon.project:ProjectSource
rubicon_ml_experiment = rubicon_ml.intake_rubicon.experiment:ExperimentSource

[versioneer]
Expand Down