diff --git a/MANIFEST.in b/MANIFEST.in index 88d07c6f4a811c072af65b3ac8e66cd40d5cb53b..69147fa6ab3211265fb258d8b88ffa0846841a83 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,7 @@ recursive-include ltfatpy/comp *.c *.pyx recursive-include doc *.rst *.py *.png *.bib prune ltfat_C_kernel/tests prune ltfat_C_kernel/lib -prune ltfatpy/tests +#prune ltfatpy/tests graft cmake-modules include *.txt include *.rst diff --git a/docker/Dockerfile b/docker/Dockerfile index 21022770da3b0fdf6cb58f4c7b777036b7ccd75f..01cc733d4acbbab3926f05e21f18a96e8670e0ee 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,16 +1,18 @@ -FROM debian:jessie +FROM ubuntu:latest MAINTAINER Denis Arrivault WORKDIR / RUN apt-get update && apt-get install -y \ cmake \ libfftw3-dev \ liblapack-dev \ - python \ - python-dev \ - python-pip \ - python-matplotlib \ - gfortran -RUN pip install scipy coverage Sphinx sphinxcontrib-bibtex -ADD ltfatpy-1.0.0.tar.gz / -RUN pip install ltfatpy-1.0.0/ && pip uninstall ltfatpy -RUN cd ltfatpy-1.0.0/ && python setup.py build_sphinx + python3 \ + python3-dev \ + python3-pip \ + python3-tk +RUN pip3 install --upgrade pip +RUN pip3 install scipy matplotlib nose coverage Sphinx sphinxcontrib-bibtex +ADD ltfatpy-1.0.8.tar.gz / +#RUN pip3 install -e ltfatpy-1.0.8/ +#WORKDIR ltfatpy-1.0.8 +#RUN nosetests +#RUN python3 setup.py build_sphinx