File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 99tornado
1010# To be able to test numpy specific things
1111# but do not build numpy from source on Python nightly
12- numpy >=1.18.5; python_version <= '3.8 '
12+ numpy >=1.18.5; python_version <= '3.12 '
1313# Code coverage uploader for Travis:
1414codecov
1515coverage
Original file line number Diff line number Diff line change @@ -1501,7 +1501,10 @@ def test_importing_multiprocessing_does_not_impact_whichmodule(self):
15011501 )
15021502 out , _ = proc .communicate ()
15031503 self .assertEqual (proc .wait (), 0 )
1504- self .assertEqual (out , b"numpy.core._multiarray_umath\n " )
1504+ assert out .strip () in (
1505+ b"numpy.core._multiarray_umath" , # numpy 1
1506+ b"numpy._core._multiarray_umath" , # numpy 2
1507+ )
15051508
15061509 def test_unrelated_faulty_module (self ):
15071510 # Check that pickling a dynamically defined function or class does not
You can’t perform that action at this time.
0 commit comments