Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT: Python2 Cleanups | Seth Troisi | 2020-01-21 | 1 | -17/+10 |
| | |||||
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 1 | -1/+1 |
| | | | | | | | Inheriting from object was necessary for Python 2 compatibility to use new-style classes. In Python 3, this is unnecessary as there are no old-style classes. Dropping the object is more idiomatic Python. | ||||
* | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 1 | -2/+0 |
| | | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior. | ||||
* | BUG: Fix matrix PendingDeprecationWarning suppression for pytest 3.8+. | Charles Harris | 2018-09-06 | 1 | -7/+1 |
| | | | | | | | | | | | | | | | Pytest < 3.8 ignored warnings issued during test collection, but that changed in pytest 3.8 and the method NumPy used to suppress the PendingDeprecationWarning for matrices no longer worked, or rather, was exposed as not working. The fix here is to suppress the warning in pytest.ini and pytesttester.py , which should work as long as the tests are the only places left where NumPy uses matrices. An alternate fix is to delay the construction of matrices in the tests until they are actually run, which has the virtue of test localization but is a bit more complicated. See https://github.com/pytest-dev/pytest/issues/3945 for discussion. | ||||
* | TST: Ignore PendingDeprecationWarning in matrixlib tests. | Marten van Kerkwijk | 2018-05-29 | 1 | -0/+8 |
| | |||||
* | MAINT: move matrix tests in testing to matrixlib. | Marten van Kerkwijk | 2018-04-29 | 1 | -1/+41 |
| | |||||
* | MAINT: move matrix tests in lib to matrixlib. | Marten van Kerkwijk | 2018-04-29 | 1 | -3/+169 |
| | |||||
* | MAINT: move matrix tests in core, polynomial to matrixlib. | Marten van Kerkwijk | 2018-04-29 | 1 | -0/+155 |