tests: finish removing pyqver from the repository (#14294)

Remove a few remaining mentions of the pyqver package, which was removed in #14289.
This commit is contained in:
Todd Gamblin 2019-12-24 17:37:03 -08:00 committed by GitHub
parent d333e14721
commit 61b4ad1837
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 6 deletions

View file

@ -68,10 +68,6 @@ PackageName: py
PackageHomePage: https://pypi.python.org/pypi/py
PackageLicenseDeclared: MIT
PackageName: pyqver
PackageHomePage: https://github.com/ghewgill/pyqver
PackageLicenseDeclared: BSD-3-Clause
PackageName: pytest
PackageHomePage: https://pypi.python.org/pypi/pytest
PackageLicenseDeclared: MIT

View file

@ -569,7 +569,7 @@ def syspathinsert(self, path=None):
def _possibly_invalidate_import_caches(self):
# invalidate caches if we can (py33 and above)
try:
import importlib # nopyqver
import importlib
except ImportError:
pass
else:

View file

@ -12,7 +12,7 @@
from ruamel.ordereddict import ordereddict
except:
try:
from collections import OrderedDict # nopyqver
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
# to get the right name import ... as ordereddict doesn't do that