Skip to content

Commit bfe74fd

Browse files
Merge branch 'master' of github.com:computationalmodelling/fidimag into dmi-nn-working
2 parents f1ab40f + d1fddd6 commit bfe74fd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:16.04
33
RUN apt -y update
44
RUN apt install -y git python3 python3-pip gcc psutils cmake wget make
55
RUN apt install -y gfortran libblas-dev liblapack-dev python3-tk sudo fonts-lato
6-
RUN pip3 install cython matplotlib pytest scipy psutil pyvtk ipywidgets
6+
RUN pip3 install cython matplotlib pytest scipy psutil pyvtk ipywidgets -U
77
RUN pip3 install --no-cache-dir notebook
88

99
RUN ln -s /usr/bin/python3 /usr/bin/python

docker/travis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN pip3 install --upgrade setuptools==20.4
3030
RUN pip3 install --upgrade setuptools==20.4
3131
# ----------
3232

33-
RUN pip3 install ipywidgets nbval pyvtk six
33+
RUN pip3 install ipywidgets nbval pyvtk six pytest -U
3434

3535
WORKDIR /fidimag
3636
ADD . /fidimag

tests/cuboid_mesh_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import print_function
22
import numpy as np
3-
from .cuboid_mesh import CuboidMesh
3+
from fidimag.common.cuboid_mesh import CuboidMesh
44

55

66
def allclose(a, b):

tests/integrators_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import pytest
99
import numpy as np
1010
from math import ceil
11-
from .integrators import euler_step, runge_kutta_step, StepIntegrator, ScipyIntegrator
11+
from fidimag.common.integrators import euler_step, runge_kutta_step, StepIntegrator, ScipyIntegrator
1212

1313

1414
interval = (0, 10)

0 commit comments

Comments
 (0)