diff options
| author | Anthon van der Neut <anthon@mnt.org> | 2018-07-28 23:53:41 +0200 |
|---|---|---|
| committer | Anthon van der Neut <anthon@mnt.org> | 2018-07-28 23:53:41 +0200 |
| commit | f9b50b606fe3f12b09dd36cb999238bf440d0cd1 (patch) | |
| tree | 04a14e70240d7677ac84d95cd38f3cded4729091 /_test/test_numpy.py | |
| parent | 9f9266b31445296439cbcc9c0e3f01b4fb15ed8a (diff) | |
| download | ruamel.yaml-f9b50b606fe3f12b09dd36cb999238bf440d0cd1.tar.gz | |
Resolving issue #210 deprecation warning in python 3.7
*When this change indeed resolves your problem, please **Close** this issue*.
*(You can do so usingthe WorkFlow pull-down (close to the top right of this page)*
Diffstat (limited to '_test/test_numpy.py')
| -rw-r--r-- | _test/test_numpy.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/_test/test_numpy.py b/_test/test_numpy.py index 6a096af..e3a7718 100644 --- a/_test/test_numpy.py +++ b/_test/test_numpy.py @@ -7,10 +7,9 @@ try: except: # NOQA numpy = None -import ruamel.yaml - def Xtest_numpy(): + import ruamel.yaml if numpy is None: return data = numpy.arange(10) |
