Skip to content

Commit

Permalink
Bump minimum Arrow version to 14.0.1 (#1304)
Browse files Browse the repository at this point in the history
* Bump min arrow version to 14.0.1

* Remove pytest config diff

* Pin sqlalchemy<2 in 3.9 CI env

* Use explicit intake CSV driver to unblock v2 changes
  • Loading branch information
charlesbluca committed Feb 6, 2024
1 parent c274609 commit 93bb1e5
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 23 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
9 changes: 5 additions & 4 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 All @@ -28,7 +28,8 @@ dependencies:
- python=3.9
- scikit-learn=1.0.0
- sphinx
- sqlalchemy
# TODO: remove this constraint when we require pandas>2
- sqlalchemy<2
- tpot>=0.12.0
# FIXME: https://github.com/fugue-project/fugue/issues/526
- triad<0.9.2
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
2 changes: 1 addition & 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
2 changes: 1 addition & 1 deletion tests/integration/test_intake.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def intake_catalog_location():
args:
urlpath: "{{ CATALOG_DIR }}/data.csv"
description: "Some Data"
driver: csv
driver: intake.source.csv.CSVSource
"""
)

Expand Down

0 comments on commit 93bb1e5

Please sign in to comment.