Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ before_install:
- sudo apt-get install -y devscripts build-essential
# remove any obsolete libraries
- sudo apt-get autoremove
- sudo apt-get install -y python-coverage python-nose python-setuptools
- sudo apt-get install -y python-mpi4py openmpi-bin openmpi-doc libopenmpi-dev python-all-dev
- sudo apt-get install -y python3-coverage python3-setuptools
- sudo apt-get install -y python3-mpi4py openmpi-bin openmpi-doc libopenmpi-dev python3-all-dev
# Install pip and cython
- wget https://bootstrap.pypa.io/get-pip.py
- sudo python get-pip.py
- sudo python3 get-pip.py
- sudo pip install -U setuptools
- pip install --user cython==0.23.4

Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Description: Multi-Simulation Coordinator for MPI -- Runtime library

Package: python3-music
Architecture: any
Depends: python3-mpi4py, python3-six, ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends}
Depends: python3-mpi4py, ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends}
Description: Multi-Simulation Coordinator for MPI -- Runtime library
MUSIC allows spike events and continuous time series to be
communicated between parallel applications within the same MPI job in
Expand Down
2 changes: 1 addition & 1 deletion pymusic/pymusic.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from libc.stdlib cimport malloc, free

import mpi4py.MPI as MPI
from six.moves import cPickle as pickle
import pickle

###########################################################

Expand Down