Skip to content

Commit

Permalink
upgrade some modules, use pinned modules at install
Browse files Browse the repository at this point in the history
  • Loading branch information
yomguy committed Jul 1, 2019
1 parent 5745bb6 commit bc984bd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions environment-pinned.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ dependencies:
- libopus=1.2.1=hb9ed12e_0
- libpng=1.6.34=hb9fc6fc_0
- libprotobuf=3.5.2=h6f1eeef_0
- librosa=0.6.1=py_1
- librosa=0.6.3=py_0
- libsndfile=1.0.28=hfc679d8_0
- libsodium=1.0.16=h1bed415_0
- libstdcxx-ng=7.2.0=hdf63c60_3
Expand Down Expand Up @@ -232,8 +232,9 @@ dependencies:
- argh==0.26.2
- billiard==3.3.0.23
- celery==3.1.26.post2
- coreapi
- deezer-python==0.6.1
- django==1.9.13
- django==1.10
- django-bootstrap-pagination==1.6.4
- django-bootstrap3==10.0.1
- django-bower==5.2.0
Expand All @@ -242,7 +243,8 @@ dependencies:
- django-debug-toolbar==1.9.1
- django-environ==0.4.5
- django-extensions==2.1.0
- djangorestframework==3.6.4
- django-filter==1.1.0
- djangorestframework==3.8
- essentia==2.1b5.dev416
- ghp-import==0.5.5
- jsonfield==2.0.2
Expand All @@ -253,6 +255,7 @@ dependencies:
- mysql-python==1.2.5
- pathtools==0.1.2
- ply==3.11
- psycopg2-binary
- py-sonicvisualiser==0.3
- pympi-ling==1.69
- redis==2.10.6
Expand All @@ -261,4 +264,5 @@ dependencies:
- uwsgi==2.0.17.1
- vamp==1.1.0
- watchdog==0.8.3
- xmljson
prefix: /opt/miniconda
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_dependencies(env_yml_file):
elif isinstance(dep, dict) and 'pip' in dep:
pip_dependencies = dep['pip']

return conda_dependencies + pip_dependencies
return pip_dependencies

# Pytest

Expand Down Expand Up @@ -90,7 +90,7 @@ def run_tests(self):
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]",
version='0.9.2',
setup_requires=['pyyaml'],
install_requires=[get_dependencies('conda-environment.yml')],
install_requires=[get_dependencies('environment-pinned.yml')],
platforms=['OS Independent'],
license='Gnu Public License V2',
classifiers=CLASSIFIERS,
Expand Down

0 comments on commit bc984bd

Please sign in to comment.