From 1086b6cada1a4452dafba8a86e474c927fa97839 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Tue, 7 May 2019 06:59:41 -0500 Subject: [PATCH 1/2] Remove --no-use-pep517 on pip install -e --- tools/ci/travis-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/travis-install.sh b/tools/ci/travis-install.sh index 51e45f64b3..2bca50e4b4 100755 --- a/tools/ci/travis-install.sh +++ b/tools/ci/travis-install.sh @@ -23,7 +23,7 @@ fi python tools/ci/travis-install.py # Install Python API in editable mode -pip install --no-use-pep517 -e .[test,vtk] +pip install -e .[test,vtk] # For uploading to coveralls pip install coveralls From 2a2b7e9b3ccfae7078e3c6aac8de882b97252828 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 6 May 2019 18:05:04 -0500 Subject: [PATCH 2/2] Fix bug in Plot.__repr__ --- openmc/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/plots.py b/openmc/plots.py index eb582502e4..00d96fd7ee 100644 --- a/openmc/plots.py +++ b/openmc/plots.py @@ -439,7 +439,7 @@ class Plot(IDManagerMixin): string += '{: <16}=\t{}\n'.format('\tBasis', self._basis) string += '{: <16}=\t{}\n'.format('\tWidth', self._width) string += '{: <16}=\t{}\n'.format('\tOrigin', self._origin) - string += '{: <16}=\t{}\n'.format('\tPixels', self._origin) + string += '{: <16}=\t{}\n'.format('\tPixels', self._pixels) string += '{: <16}=\t{}\n'.format('\tColor by', self._color_by) string += '{: <16}=\t{}\n'.format('\tBackground', self._background) string += '{: <16}=\t{}\n'.format('\tMask components',