Skip to content

Commit

Permalink
Fix xxhash optional requirement in environment.yml
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
santisoler committed Jun 25, 2024
1 parent e17d2dc commit 6eb9563
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6eb9563

Please sign in to comment.