From 6eb9563209e67e68bc9fce761ecbd4e1f0f65df1 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Tue, 25 Jun 2024 11:09:18 -0700 Subject: [PATCH] Fix xxhash optional requirement in environment.yml Fix the name of the package for installing `xxhash` in `environment.yml`. In conda forge, `xxhash` is the package that provides the binaries for the hash algorithm, while `python-xxhash` provides the Python wrapper (the same package as `xxhash` in PyPI). --- environment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index d74a3573..6b7277db 100644 --- a/environment.yml +++ b/environment.yml @@ -12,7 +12,8 @@ dependencies: # Optional dependencies - tqdm>=4.41.0,<5.0.0 - paramiko>=2.7.0 - - xxhash>=1.4.3 + - python-xxhash>=1.4.3 # in conda-forge python-xxhash is the python pkg + - xxhash # this is the xxHash library in conda-forge # Build - build # Test