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
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.10-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- mlflow
- mock
- numpy>=1.21.6
- pandas>=1.4.0
- pandas>=1.4.0,<2.0.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.9-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- mlflow
- mock
- numpy>=1.21.6
- pandas>=1.4.0
- pandas>=1.4.0,<2.0.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- mlflow
- mock
- numpy>=1.21.6
- pandas>=1.4.0
- pandas>=1.4.0,<2.0.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- mlflow
- mock
- numpy>=1.21.6
- pandas>=1.4.0
- pandas>=1.4.0,<2.0.0
- pre-commit
- prompt_toolkit>=3.0.8
- psycopg2
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ requirements:
run:
- python
- dask >=2022.3.0,<=2023.5.1
- pandas >=1.4.0
- pandas >=1.4.0,<2.0.0
# FIXME: handling is needed for httpx-based fastapi>=0.87.0
- fastapi >=0.69.0,<0.87.0
- uvicorn >=0.13.4
Expand Down
2 changes: 1 addition & 1 deletion docker/conda.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python>=3.8
dask>=2022.3.0,<=2023.5.1
pandas>=1.4.0
pandas>=1.4.0,<2.0.0
jpype1>=1.0.2
openjdk>=8
maven>=3.6.0
Expand Down
2 changes: 1 addition & 1 deletion docker/main.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN mamba install -y \
"setuptools-rust>=1.5.2" \
# core dependencies
"dask>=2022.3.0,<=2023.5.1" \
"pandas>=1.4.0" \
"pandas>=1.4.0,<2.0.0" \
# FIXME: handling is needed for httpx-based fastapi>=0.87.0
"fastapi>=0.69.0,<0.87.0" \
"uvicorn>=0.13.4" \
Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- sphinx-tabs
- dask-sphinx-theme>=2.0.3
- dask>=2022.3.0,<=2023.5.1
- pandas>=1.4.0
- pandas>=1.4.0,<2.0.0
- fugue>=0.7.3
# FIXME: handling is needed for httpx-based fastapi>=0.87.0
- fastapi>=0.69.0,<0.87.0
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sphinx>=4.0.0
sphinx-tabs
dask-sphinx-theme>=3.0.0
dask>=2022.3.0,<=2023.5.1
pandas>=1.4.0
pandas>=1.4.0,<2.0.0
fugue>=0.7.3
# FIXME: handling is needed for httpx-based fastapi>=0.87.0
fastapi>=0.69.0,<0.87.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
install_requires=[
"dask[dataframe]>=2022.3.0,<=2023.5.1",
"distributed>=2022.3.0,<=2023.5.1",
"pandas>=1.4.0",
"pandas>=1.4.0,<2.0.0",
# FIXME: handling is needed for httpx-based fastapi>=0.87.0
"fastapi>=0.69.0,<0.87.0",
"uvicorn>=0.13.4",
Expand Down