From 867bc1f185ee7885cfdef0b97981832e6b4ca734 Mon Sep 17 00:00:00 2001 From: Ray Osborn Date: Tue, 3 Dec 2019 16:46:20 -0600 Subject: [PATCH] Reorder requirements I don't think this has any functional effects. --- requirements.txt | 4 ++-- src/nexusformat/requires.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3936f78..aebd6f7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ h5py -ipython numpy -scipy \ No newline at end of file +scipy +ipython diff --git a/src/nexusformat/requires.py b/src/nexusformat/requires.py index c8c6a47..1b9937a 100644 --- a/src/nexusformat/requires.py +++ b/src/nexusformat/requires.py @@ -13,5 +13,5 @@ pkg_requirements = [ 'numpy', 'scipy', - 'h5py', + 'h5py' ]