Skip to content

Commit

Permalink
Merge branch 'main' into comments_notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanSoley authored Apr 3, 2024
2 parents 0da69ed + b186b21 commit 8c81f6f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/docs-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies:
- dash<=2.15.0,>=2.11.0
- dash-bootstrap-components<=1.5.0,>=1.0.0
- fsspec<=2024.2.0,>=2021.4.0
- intake[dataframe]<=2.0.3,>=0.5.2
- intake<=2.0.3,>=0.5.2
- jsonpath-ng<=1.6.1,>=1.5.3
- numpy<=1.26.4,>=1.22.0
- pandas<=2.2.1,>=1.0.0
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:

- click<=8.1.7,>=7.1
- fsspec<=2024.2.0,>=2021.4.0
- intake[dataframe]<=2.0.3,>=0.5.2
- intake<=2.0.3,>=0.5.2
- jsonpath-ng<=1.6.1,>=1.5.3
- numpy<=1.26.4,>=1.22.0
- pandas<=2.2.1,>=1.0.0
Expand All @@ -27,7 +27,7 @@ dependencies:

# for testing
- black
- dask
- dask[dataframe]
- flake8
- h2o-py
- ipykernel
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ packages = find:
install_requires =
click<=8.1.7,>=7.1
fsspec<=2024.2.0,>=2021.4.0
intake[dataframe]<=2.0.3,>=0.5.2
intake<=2.0.3,>=0.5.2
jsonpath-ng<=1.6.1,>=1.5.3
numpy<=1.26.4,>=1.22.0
pandas<=2.2.1,>=1.0.0
Expand Down Expand Up @@ -99,7 +99,7 @@ xfail_strict = True
[edgetest.envs.core]
python_version = 3.9
deps =
dask
dask[dataframe]
jupyterlab
kaleido
lightgbm
Expand All @@ -119,7 +119,7 @@ upgrade =
dash
dash-bootstrap-components
fsspec
intake[dataframe]
intake
jsonpath-ng
numpy
pandas
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/client/test_rubicon_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def test_get_project_as_dask_df(rubicon_and_project_client_with_experiments):
rubicon, project = rubicon_and_project_client_with_experiments
ddf = rubicon.get_project_as_df(name="Test Project", df_type="dask")

assert isinstance(ddf, dd.core.DataFrame)
assert isinstance(ddf, dd.DataFrame)


def test_get_project_as_pandas_df(rubicon_and_project_client_with_experiments):
Expand Down

0 comments on commit 8c81f6f

Please sign in to comment.