Skip to content

Commit f83e68c

Browse files
authored
Pin bokeh and coiled for 0.1.1 release (#524)
1 parent e9aa859 commit f83e68c

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

recipe/meta.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% set name = "coiled-runtime" %}
22
{% set version = "0.2.0" + environ.get("VERSION_SUFFIX", '') %}
3-
{% set dask_version = environ.get("DASK_VERSION", "2022.10.2") %}
4-
{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.10.2") %}
3+
{% set dask_version = environ.get("DASK_VERSION", "2022.6.0") %}
4+
{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.6.0") %}
55

66
package:
77
name: {{ name|lower }}
@@ -23,34 +23,34 @@ requirements:
2323
- python >=3.8,<3.11
2424
- pip
2525
- coiled >=0.2.41
26-
- numpy ==1.23.3
27-
- pandas ==1.5.1
26+
- numpy ==1.21.6
27+
- pandas ==1.4.2
2828
- dask =={{ dask_version }}
2929
- distributed =={{ distributed_version }}
30-
- fsspec ==2022.10.0
31-
- s3fs ==2022.10.0
32-
- gcsfs ==2022.10.0
33-
- pyarrow ==9.0.0
34-
- jupyterlab ==3.4.8
35-
- dask-labextension ==5.3.0
36-
- lz4 ==4.0.2
37-
- ipywidgets ==7.7.2
30+
- fsspec ==2022.5.0
31+
- s3fs ==2022.5.0
32+
- gcsfs ==2022.5.0
33+
- pyarrow ==8.0.0
34+
- jupyterlab ==3.4.2
35+
- dask-labextension ==5.2.0
36+
- lz4 ==4.0.0
37+
- ipywidgets ==7.7.0
3838
- numba ==0.56.3
39-
- scikit-learn ==1.1.3
39+
- scikit-learn ==1.1.1
4040
- ipycytoscape ==1.3.3
4141
- click ==8.1.3
42-
- xarray ==2022.10.0
43-
- zarr ==2.13.3
44-
- msgpack-python ==1.0.4
45-
- cloudpickle ==2.2.0
42+
- xarray ==2022.3.0
43+
- zarr ==2.11.3
44+
- msgpack-python ==1.0.3
45+
- cloudpickle ==2.1.0
4646
- tornado ==6.1
4747
- toolz ==0.12.0
48+
- python-blosc ==1.10.2
4849
- zict ==2.2.0
49-
- xgboost ==1.6.2
50+
- xgboost ==1.6.1
5051
- dask-ml ==2022.5.27
5152
- openssl >1.1.0g
5253
- pynvml ==11.4.1
53-
- optuna ==3.0.3
5454
- bokeh ==2.4.3
5555

5656
test:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def get_requirements():
2424
requirements[requirement.name] = str(requirement.specifier)
2525

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

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

4445
setup(
4546
name="coiled-runtime",
46-
version="0.2.0",
47+
version="0.1.1",
4748
description="Simple and fast way to get started with Dask",
4849
url="https://github.com/coiled/coiled-runtime",
4950
license="BSD",

tests/runtime/test_build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def get_meta_specifiers() -> dict[str, SpecifierSet]:
5656

5757
_conda_to_pip_names = {
5858
"msgpack-python": "msgpack",
59+
"python-blosc": "blosc",
5960
}
6061

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

0 commit comments

Comments
 (0)