Skip to content
Snippets Groups Projects
Unverified Commit 61b4ad18 authored by Todd Gamblin's avatar Todd Gamblin Committed by GitHub
Browse files

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

Remove a few remaining mentions of the pyqver package, which was removed in #14289.
parent d333e147
No related branches found
No related tags found
No related merge requests found
...@@ -68,10 +68,6 @@ PackageName: py ...@@ -68,10 +68,6 @@ PackageName: py
PackageHomePage: https://pypi.python.org/pypi/py PackageHomePage: https://pypi.python.org/pypi/py
PackageLicenseDeclared: MIT PackageLicenseDeclared: MIT
PackageName: pyqver
PackageHomePage: https://github.com/ghewgill/pyqver
PackageLicenseDeclared: BSD-3-Clause
PackageName: pytest PackageName: pytest
PackageHomePage: https://pypi.python.org/pypi/pytest PackageHomePage: https://pypi.python.org/pypi/pytest
PackageLicenseDeclared: MIT PackageLicenseDeclared: MIT
......
...@@ -569,7 +569,7 @@ def syspathinsert(self, path=None): ...@@ -569,7 +569,7 @@ def syspathinsert(self, path=None):
def _possibly_invalidate_import_caches(self): def _possibly_invalidate_import_caches(self):
# invalidate caches if we can (py33 and above) # invalidate caches if we can (py33 and above)
try: try:
import importlib # nopyqver import importlib
except ImportError: except ImportError:
pass pass
else: else:
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
from ruamel.ordereddict import ordereddict from ruamel.ordereddict import ordereddict
except: except:
try: try:
from collections import OrderedDict # nopyqver from collections import OrderedDict
except ImportError: except ImportError:
from ordereddict import OrderedDict from ordereddict import OrderedDict
# to get the right name import ... as ordereddict doesn't do that # to get the right name import ... as ordereddict doesn't do that
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment