File tree 3 files changed +22
-20
lines changed
3 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 1
1
{% set name = "coiled-runtime" %}
2
2
{% 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 ") %}
5
5
6
6
package :
7
7
name : {{ name|lower }}
@@ -23,34 +23,34 @@ requirements:
23
23
- python >=3.8,<3.11
24
24
- pip
25
25
- coiled >=0.2.41
26
- - numpy ==1.23.3
27
- - pandas ==1.5.1
26
+ - numpy ==1.21.6
27
+ - pandas ==1.4.2
28
28
- dask =={{ dask_version }}
29
29
- 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
38
38
- numba ==0.56.3
39
- - scikit-learn ==1.1.3
39
+ - scikit-learn ==1.1.1
40
40
- ipycytoscape ==1.3.3
41
41
- 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
46
46
- tornado ==6.1
47
47
- toolz ==0.12.0
48
+ - python-blosc ==1.10.2
48
49
- zict ==2.2.0
49
- - xgboost ==1.6.2
50
+ - xgboost ==1.6.1
50
51
- dask-ml ==2022.5.27
51
52
- openssl >1.1.0g
52
53
- pynvml ==11.4.1
53
- - optuna ==3.0.3
54
54
- bokeh ==2.4.3
55
55
56
56
test :
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ def get_requirements():
24
24
requirements [requirement .name ] = str (requirement .specifier )
25
25
26
26
# Handle packages that have different names on conda-forge and PyPI
27
+ requirements ["blosc" ] = requirements .pop ("python-blosc" )
27
28
requirements ["msgpack" ] = requirements .pop ("msgpack-python" )
28
29
29
30
# Exclude packages not available on PyPI
@@ -43,7 +44,7 @@ def get_requirements():
43
44
44
45
setup (
45
46
name = "coiled-runtime" ,
46
- version = "0.2.0 " ,
47
+ version = "0.1.1 " ,
47
48
description = "Simple and fast way to get started with Dask" ,
48
49
url = "https://github.com/coiled/coiled-runtime" ,
49
50
license = "BSD" ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ def get_meta_specifiers() -> dict[str, SpecifierSet]:
56
56
57
57
_conda_to_pip_names = {
58
58
"msgpack-python" : "msgpack" ,
59
+ "python-blosc" : "blosc" ,
59
60
}
60
61
61
62
_pip_to_conda_names = {v : k for k , v in _conda_to_pip_names .items ()}
You can’t perform that action at this time.
0 commit comments