Skip to content

Commit

Permalink
Unpin dask/distributed
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Jan 9, 2024
1 parent 0eeb338 commit 5d501c4
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 23 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ jobs:
run: |
maturin develop
- name: Install hive testing dependencies
if: |
matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest'
run: |
docker pull bde2020/hive:2.3.2-postgresql-metastore
docker pull bde2020/hive-metastore-postgresql:2.3.0
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/docker/conda.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python>=3.9
dask>=2022.3.0,<=2023.11.0
dask>=2022.3.0
pandas>=1.4.0
jpype1>=1.0.2
openjdk>=8
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 @@ -16,7 +16,7 @@ RUN mamba install -y \
# build requirements
"maturin>=1.3,<1.4" \
# core dependencies
"dask>=2022.3.0,<=2023.11.0" \
"dask>=2022.3.0" \
"pandas>=1.4.0" \
"fastapi>=0.92.0" \
"httpx>=0.24.1" \
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- c-compiler
- dask>=2022.3.0,<=2023.11.0
- dask>=2022.3.0
- fastapi>=0.92.0
- fugue>=0.7.3
- httpx>=0.24.1
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- c-compiler
- dask>=2022.3.0,<=2023.11.0
- dask>=2022.3.0
- fastapi>=0.92.0
- fugue>=0.7.3
- httpx>=0.24.1
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- c-compiler
- dask>=2022.3.0,<=2023.11.0
- dask>=2022.3.0
- fastapi>=0.92.0
- fugue>=0.7.3
- httpx>=0.24.1
Expand Down
11 changes: 5 additions & 6 deletions continuous_integration/gpuci/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ channels:
dependencies:
- c-compiler
- zlib
- dask>=2022.3.0,<=2023.11.0
- dask>=2022.3.0
- fastapi>=0.92.0
- fugue>=0.7.3
- httpx>=0.24.1
Expand Down Expand Up @@ -49,8 +49,7 @@ dependencies:
- ucx-py=0.36
- xgboost=*=rapidsai_py*
- libxgboost=*=rapidsai_h*
# TODO: unpin after RAPIDS 24.02 release
# - pip
# - pip:
# - git+https://github.com/dask/dask
# - git+https://github.com/dask/distributed
- pip
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/distributed
9 changes: 4 additions & 5 deletions continuous_integration/gpuci/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ dependencies:
- ucx-py=0.36
- xgboost=*=rapidsai_py*
- libxgboost=*=rapidsai_h*
# TODO: unpin after RAPIDS 24.02 release
# - pip
# - pip:
# - git+https://github.com/dask/dask
# - git+https://github.com/dask/distributed
- pip
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/dask/distributed
2 changes: 1 addition & 1 deletion continuous_integration/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ requirements:
- xz # [linux64]
run:
- python
- dask >=2022.3.0,<=2023.11.0
- dask >=2022.3.0
- pandas >=1.4.0
- fastapi >=0.92.0
- httpx >=0.24.1
Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- sphinx>=4.0.0
- sphinx-tabs
- dask-sphinx-theme>=2.0.3
- dask>=2022.3.0,<=2023.11.0
- dask>=2022.3.0
- pandas>=1.4.0
- fugue>=0.7.3
# FIXME: https://github.com/fugue-project/fugue/issues/526
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sphinx>=4.0.0
sphinx-tabs
dask-sphinx-theme>=3.0.0
dask>=2022.3.0,<=2023.11.0
dask>=2022.3.0
pandas>=1.4.0
fugue>=0.7.3
# FIXME: https://github.com/fugue-project/fugue/issues/526
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ classifiers = [
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"dask[dataframe]>=2022.3.0,<=2023.11.0",
"distributed>=2022.3.0,<=2023.11.0",
"dask[dataframe]>=2022.3.0",
"distributed>=2022.3.0",
"pandas>=1.4.0",
"fastapi>=0.92.0",
"httpx>=0.24.1",
Expand Down

0 comments on commit 5d501c4

Please sign in to comment.