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
3 changes: 2 additions & 1 deletion continuous_integration/environment-3.10-jdk11-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ dependencies:
- qpd
- triad
- pip:
- fugue[sql]>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
- fugue[sql]>=0.5.3,<0.7.0
3 changes: 2 additions & 1 deletion continuous_integration/environment-3.10-jdk8-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ dependencies:
- qpd
- triad
- pip:
- fugue[sql]>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
- fugue[sql]>=0.5.3,<0.7.0
3 changes: 2 additions & 1 deletion continuous_integration/environment-3.9-jdk11-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ dependencies:
- qpd
- triad
- pip:
- fugue[sql]>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
- fugue[sql]>=0.5.3,<0.7.0
3 changes: 2 additions & 1 deletion continuous_integration/environment-3.9-jdk8-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ dependencies:
- qpd
- triad
- pip:
- fugue[sql]>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
- fugue[sql]>=0.5.3,<0.7.0
3 changes: 2 additions & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ dependencies:
- maven>=3.6.0
- dask>=2022.3.0
- pandas>=1.1.2
- fugue>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
- fugue>=0.5.3,<0.7.0
- jpype1>=1.0.2
- fastapi>=0.69.0
- uvicorn>=0.11.3
Expand Down
3 changes: 2 additions & 1 deletion docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ sphinx-tabs
dask-sphinx-theme>=3.0.0
dask>=2022.3.0
pandas>=1.1.2
fugue>=0.5.3
# FIXME: tests are failing with fugue 0.7.0
fugue>=0.5.3,<0.7.0
jpype1>=1.0.2
fastapi>=0.69.0
uvicorn>=0.11.3
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def build(self):
"black==22.3.0",
"isort==5.7.0",
],
"fugue": ["fugue[sql]>=0.5.3"],
# FIXME: tests are failing with fugue 0.7.0
"fugue": ["fugue[sql]>=0.5.3,<0.7.0"],
},
entry_points={
"console_scripts": [
Expand Down