summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-10-21 15:24:50 +0200
committerJustin Lecher <jlec@gentoo.org>2015-10-21 15:40:24 +0200
commite0be7fcacfe52147962469b89d6979c34f3ab226 (patch)
tree1d89004ebcf0122a49de5762cb64f36ecde90dbc /dev-python/astropy/files
parentdev-python/h5py: Add python3.5 support (diff)
downloadgentoo-e0be7fcacfe52147962469b89d6979c34f3ab226.tar.gz
gentoo-e0be7fcacfe52147962469b89d6979c34f3ab226.tar.bz2
gentoo-e0be7fcacfe52147962469b89d6979c34f3ab226.zip
dev-python/astropy: Add python3.5 support
Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/astropy/files')
-rw-r--r--dev-python/astropy/files/astropy-9999-system-pytest.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/astropy/files/astropy-9999-system-pytest.patch b/dev-python/astropy/files/astropy-9999-system-pytest.patch
new file mode 100644
index 000000000000..19b321d2a019
--- /dev/null
+++ b/dev-python/astropy/files/astropy-9999-system-pytest.patch
@@ -0,0 +1,16 @@
+ astropy/tests/helper.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/astropy/tests/helper.py b/astropy/tests/helper.py
+index 97d2617..a75db15 100644
+--- a/astropy/tests/helper.py
++++ b/astropy/tests/helper.py
+@@ -42,7 +42,7 @@ __all__ = ['raises', 'enable_deprecations_as_exceptions', 'remote_data',
+ 'pickle_protocol', 'generic_recursive_equality_test']
+
+
+-if os.environ.get('ASTROPY_USE_SYSTEM_PYTEST') or '_pytest' in sys.modules:
++if True or os.environ.get('ASTROPY_USE_SYSTEM_PYTEST') or '_pytest' in sys.modules:
+ import pytest
+
+ else: