Skip to content

Commit

Permalink
Add fugue version cap (#11)
Browse files Browse the repository at this point in the history
* Add fugue version cap

* update
  • Loading branch information
goodwanghan authored Jan 20, 2024
1 parent 80b7893 commit 6c6236f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fugue_warehouses_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# flake8: noqa

__version__ = "0.0.3"
__version__ = "0.0.4"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ def get_version() -> str:
install_requires=[],
extras_require={
"bigquery": [
"fugue[ibis]>=0.8.4",
"fugue[ibis]>=0.8.4,<0.9",
"fs-gcsfs",
"pandas-gbq",
"google-auth",
"db-dtypes",
"ibis-framework[bigquery]",
],
"trino": [
"fugue[ibis]>=0.8.4",
"fugue[ibis]>=0.8.4,<0.9",
"ibis-framework[trino]",
],
"ray": ["fugue[ray]>=0.8.4"],
"snowflake": ["fugue[ibis]>=0.8.4", "ibis-framework[snowflake]"],
"ray": ["fugue[ray]>=0.8.4,<0.9"],
"snowflake": ["fugue[ibis]>=0.8.4,<0.9", "ibis-framework[snowflake]"],
},
classifiers=[
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
Expand Down

0 comments on commit 6c6236f

Please sign in to comment.