Skip to content

Commit

Permalink
Fix the name of the conda blosc package
Browse files Browse the repository at this point in the history
The name of the python interface is "python-blosc", the package "blosc"
only contains the C library.
  • Loading branch information
mstimberg committed Apr 6, 2018
1 parent a336966 commit 6e71266
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -73,7 +73,7 @@ script:
- python setup.py sdist --formats=zip,gztar,bztar
- python setup.py bdist_wheel
# Try installing from the source package (install dependencies via conda first)
- conda install --yes --quiet "tqdm!=4.15" mpi4py numpy cython scipy matplotlib h5py colorama psutil "qt>=4" libgcc "pyqt >=4" blosc
- conda install --yes --quiet "tqdm!=4.15" mpi4py numpy cython scipy matplotlib h5py colorama psutil "qt>=4" libgcc "pyqt >=4" python-blosc
- pip install dist/*.tar.gz
- spyking-circus -h
- pip uninstall -y -q spyking-circus
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -77,7 +77,7 @@ test_script:
- python setup.py sdist --formats=zip,gztar,bztar
- python setup.py bdist_wheel
# Try installing from the source package (install dependencies via conda first)
- conda install --yes --quiet -c spyking-circus "tqdm!=4.15" mpi4py numpy cython scipy matplotlib h5py colorama psutil "qt>=4" blosc
- conda install --yes --quiet -c spyking-circus "tqdm!=4.15" mpi4py numpy cython scipy matplotlib h5py colorama psutil "qt>=4" python-blosc
- FOR /R dist %%F in (*.tar.gz) do pip install %%F
- spyking-circus -h
- pip uninstall -y -q spyking-circus
Expand Down
2 changes: 1 addition & 1 deletion conda_recipe/meta.yaml
Expand Up @@ -17,7 +17,7 @@ requirements:
- h5py
- setuptools >=26
- colorama
- blosc
- python-blosc
- qt >=4,<5
- psutil
- tqdm !=4.15
Expand Down

1 comment on commit 6e71266

@yger
Copy link
Member

@yger yger commented on 6e71266 Apr 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my hero, thanks !

Please sign in to comment.