-
Notifications
You must be signed in to change notification settings - Fork 72
Update nightly recipe / setup for 2021.11.0 release
#308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9d2d302
8d05148
81fd84a
f5851ba
7e139e0
6d4593d
6ae9d4a
38f03ce
903cbe6
3f239fc
60da6ca
a674972
5c4d069
ead3d94
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| python: | ||
| - 3.7 | ||
| - 3.8 | ||
| - 3.9 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| {% set name = "dask-sql" %} | ||
| {% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev') + environ.get('VERSION_SUFFIX', '') %} | ||
| {% set py_version=environ.get('CONDA_PY', 36) %} | ||
|
|
||
|
|
||
| package: | ||
|
|
@@ -11,40 +10,55 @@ source: | |
| git_url: ../.. | ||
|
|
||
| build: | ||
| noarch: python | ||
| number: {{ GIT_DESCRIBE_NUMBER }} | ||
| string: py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} | ||
| skip: true # [py2k] | ||
| entry_points: | ||
| - dask-sql-server = dask_sql.server.app:main | ||
| - dask-sql = dask_sql.cmd:main | ||
| string: py{{ python | replace(".", "") }}{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} | ||
| script: {{ PYTHON }} -m pip install . --no-deps -vv | ||
|
|
||
| requirements: | ||
| build: | ||
| - maven >=3.6.0 | ||
| host: | ||
| - pip | ||
| - python >=3.6 | ||
| - setuptools_scm | ||
| - python | ||
| - setuptools-scm | ||
| run: | ||
| - python >=3.6 | ||
| - dask ==2021.10.0 | ||
| - python | ||
| - dask >=2021.10.0 | ||
| - pandas >=1.0.0 | ||
| - jpype1 >=1.0.2 | ||
| - openjdk >=8 | ||
| - fastapi >=0.61.1 | ||
| - uvicorn >=0.11.3 | ||
| - tzlocal >=2.1 | ||
| - prompt_toolkit >=3.0.8 | ||
| - pygments >=2.7.3 | ||
| - nest-asyncio >=1.0.0 | ||
| - tabulate >=0.8.9 | ||
| - prompt-toolkit | ||
| - pygments | ||
| - nest-asyncio | ||
| - tabulate | ||
| - importlib-metadata # [py<38] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the selector that makes |
||
|
|
||
| test: | ||
| imports: | ||
| - dask_sql | ||
| commands: | ||
| - pip check | ||
| - dask-sql-server --help | ||
| - dask-sql --help | ||
| requires: | ||
| - pip | ||
|
|
||
| about: | ||
| home: https://github.com/dask-contrib/dask-sql | ||
| summary: SQL Query Layer for dask | ||
| home: https://github.com/dask-contrib/dask-sql/ | ||
| summary: SQL query layer for Dask | ||
| license: MIT | ||
| license_file: LICENSE.txt | ||
|
|
||
| extra: | ||
| recipe-maintainers: | ||
| - quasiben | ||
| - galipremsagar | ||
| - charlesbluca | ||
| - nils-braun | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,8 +61,8 @@ def run(self): | |
|
|
||
| setup( | ||
| name="dask_sql", | ||
| description="Dask SQL", | ||
| url="http://github.com/dask-contrib/dask-sql/", | ||
| description="SQL query layer for Dask", | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just noting that this change maps to the conda recipe's |
||
| url="https://github.com/dask-contrib/dask-sql/", | ||
| maintainer="Nils Braun", | ||
| maintainer_email="[email protected]", | ||
| license="MIT", | ||
|
|
@@ -74,7 +74,7 @@ def run(self): | |
| python_requires=">=3.6", | ||
| setup_requires=["setuptools_scm"] + sphinx_requirements, | ||
| install_requires=[ | ||
| "dask[dataframe,distributed]==2021.10.0", | ||
| "dask[dataframe,distributed]>=2021.10.0", | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll need this if we want to use unpinned versions of Dask with the nightlies for certain features ( |
||
| "pandas>=1.0.0", # below 1.0, there were no nullable ext. types | ||
| "jpype1>=1.0.2", | ||
| "fastapi>=0.61.1", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If not will probably need to add this back in and modify