Skip to content

Commit

Permalink
Bump min arrow version to 14.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Feb 5, 2024
1 parent c274609 commit f3cce12
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion continuous_integration/docker/conda.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tzlocal>=2.1
fastapi>=0.92.0
httpx>=0.24.1
uvicorn>=0.13.4
pyarrow>=6.0.2
pyarrow>=14.0.1
prompt_toolkit>=3.0.8
pygments>=2.7.1
scikit-learn>=1.0.0
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/docker/main.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN mamba install -y \
"pygments>=2.7.1" \
tabulate \
# additional dependencies
"pyarrow>=6.0.2" \
"pyarrow>=14.0.1" \
"scikit-learn>=1.0.0" \
"intake>=0.6.0" \
&& conda clean -ay
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ dependencies:
- jsonschema
- lightgbm
- maturin>=1.3,<1.4
- mlflow>=2.0
- mlflow>=2.9
- mock
- numpy>=1.21.6
- numpy>=1.22.4
- pandas>=1.4.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
- pyarrow>=6.0.2
- pyarrow>=14.0.1
- pygments>=2.7.1
- pyhive
- pytest-cov
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ dependencies:
- jsonschema
- lightgbm
- maturin>=1.3,<1.4
- mlflow>=2.0
- mlflow>=2.9
- mock
- numpy>=1.21.6
- numpy>=1.22.4
- pandas>=1.4.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
- pyarrow>=6.0.2
- pyarrow>=14.0.1
- pygments>=2.7.1
- pyhive
- pytest-cov
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/environment-3.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ dependencies:
- lightgbm
- maturin>=1.3,<1.4
# TODO: add once mlflow 3.12 builds are available
# - mlflow>=2.0
# - mlflow>=2.9
- mock
- numpy>=1.21.6
- numpy>=1.22.4
- pandas>=1.4.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
- pyarrow>=6.0.2
- pyarrow>=14.0.1
- pygments>=2.7.1
- pyhive
- pytest-cov
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ dependencies:
- jsonschema
- lightgbm
- maturin=1.3
- mlflow=2.0
- mlflow=2.9
- mock
- numpy=1.21.6
- numpy=1.22.4
- pandas=1.4.0
- pre-commit
- prompt_toolkit=3.0.8
- psycopg2
- pyarrow=6.0.2
- pyarrow=14.0.1
- pygments=2.7.1
- pyhive
- pytest-cov
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/gpuci/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dependencies:
- jsonschema
- lightgbm
- maturin>=1.3,<1.4
- mlflow>=2.0
- mlflow>=2.9
- mock
- numpy>=1.21.6
- numpy>=1.22.4
- pandas>=1.4.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
- pyarrow>=6.0.2
- pyarrow>=14.0.1
- pygments>=2.7.1
- pyhive
- pytest-cov
Expand Down
6 changes: 3 additions & 3 deletions continuous_integration/gpuci/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dependencies:
- jsonschema
- lightgbm
- maturin>=1.3,<1.4
- mlflow>=2.0
- mlflow>=2.9
- mock
- numpy>=1.21.6
- numpy>=1.22.4
- pandas>=1.4.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
- pyarrow>=6.0.2
- pyarrow>=14.0.1
- pygments>=2.7.1
- pyhive
- pytest-cov
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dev = [
"pytest-cov>=2.10.1",
"mock>=4.0.3",
"sphinx>=3.2.1",
"pyarrow>=6.0.2",
"pyarrow>=14.0.1",
"scikit-learn>=1.0.0",
"intake>=0.6.0",
"pre-commit",
Expand Down Expand Up @@ -99,6 +99,7 @@ addopts = "-v -rsxfE --color=yes --cov dask_sql --cov-config=.coveragerc --cov-r
filterwarnings = [
"error:::dask_sql[.*]",
"error:::dask[.*]",
"error:::pandas[.*]",
"ignore:Need to do a cross-join:ResourceWarning:dask_sql[.*]",
"ignore:Dask doesn't support Dask frames:ResourceWarning:dask_sql[.*]",
"ignore:Running on a single-machine scheduler:UserWarning:dask[.*]",
Expand Down

0 comments on commit f3cce12

Please sign in to comment.