Skip to content

Commit

Permalink
Pin bokeh and coiled for 0.1.1 release (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi authored Nov 17, 2022
1 parent e9aa859 commit f83e68c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 20 deletions.
38 changes: 19 additions & 19 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set name = "coiled-runtime" %}
{% set version = "0.2.0" + environ.get("VERSION_SUFFIX", '') %}
{% set dask_version = environ.get("DASK_VERSION", "2022.10.2") %}
{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.10.2") %}
{% set dask_version = environ.get("DASK_VERSION", "2022.6.0") %}
{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.6.0") %}

package:
name: {{ name|lower }}
Expand All @@ -23,34 +23,34 @@ requirements:
- python >=3.8,<3.11
- pip
- coiled >=0.2.41
- numpy ==1.23.3
- pandas ==1.5.1
- numpy ==1.21.6
- pandas ==1.4.2
- dask =={{ dask_version }}
- distributed =={{ distributed_version }}
- fsspec ==2022.10.0
- s3fs ==2022.10.0
- gcsfs ==2022.10.0
- pyarrow ==9.0.0
- jupyterlab ==3.4.8
- dask-labextension ==5.3.0
- lz4 ==4.0.2
- ipywidgets ==7.7.2
- fsspec ==2022.5.0
- s3fs ==2022.5.0
- gcsfs ==2022.5.0
- pyarrow ==8.0.0
- jupyterlab ==3.4.2
- dask-labextension ==5.2.0
- lz4 ==4.0.0
- ipywidgets ==7.7.0
- numba ==0.56.3
- scikit-learn ==1.1.3
- scikit-learn ==1.1.1
- ipycytoscape ==1.3.3
- click ==8.1.3
- xarray ==2022.10.0
- zarr ==2.13.3
- msgpack-python ==1.0.4
- cloudpickle ==2.2.0
- xarray ==2022.3.0
- zarr ==2.11.3
- msgpack-python ==1.0.3
- cloudpickle ==2.1.0
- tornado ==6.1
- toolz ==0.12.0
- python-blosc ==1.10.2
- zict ==2.2.0
- xgboost ==1.6.2
- xgboost ==1.6.1
- dask-ml ==2022.5.27
- openssl >1.1.0g
- pynvml ==11.4.1
- optuna ==3.0.3
- bokeh ==2.4.3

test:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def get_requirements():
requirements[requirement.name] = str(requirement.specifier)

# Handle packages that have different names on conda-forge and PyPI
requirements["blosc"] = requirements.pop("python-blosc")
requirements["msgpack"] = requirements.pop("msgpack-python")

# Exclude packages not available on PyPI
Expand All @@ -43,7 +44,7 @@ def get_requirements():

setup(
name="coiled-runtime",
version="0.2.0",
version="0.1.1",
description="Simple and fast way to get started with Dask",
url="https://github.com/coiled/coiled-runtime",
license="BSD",
Expand Down
1 change: 1 addition & 0 deletions tests/runtime/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def get_meta_specifiers() -> dict[str, SpecifierSet]:

_conda_to_pip_names = {
"msgpack-python": "msgpack",
"python-blosc": "blosc",
}

_pip_to_conda_names = {v: k for k, v in _conda_to_pip_names.items()}
Expand Down

0 comments on commit f83e68c

Please sign in to comment.