X Tutup
Skip to content

Commit 61b4ad1

Browse files
authored
tests: finish removing pyqver from the repository (spack#14294)
Remove a few remaining mentions of the pyqver package, which was removed in spack#14289.
1 parent d333e14 commit 61b4ad1

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

COPYRIGHT

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ PackageName: py
6868
PackageHomePage: https://pypi.python.org/pypi/py
6969
PackageLicenseDeclared: MIT
7070

71-
PackageName: pyqver
72-
PackageHomePage: https://github.com/ghewgill/pyqver
73-
PackageLicenseDeclared: BSD-3-Clause
74-
7571
PackageName: pytest
7672
PackageHomePage: https://pypi.python.org/pypi/pytest
7773
PackageLicenseDeclared: MIT

lib/spack/external/_pytest/pytester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def syspathinsert(self, path=None):
569569
def _possibly_invalidate_import_caches(self):
570570
# invalidate caches if we can (py33 and above)
571571
try:
572-
import importlib # nopyqver
572+
import importlib
573573
except ImportError:
574574
pass
575575
else:

lib/spack/external/ruamel/yaml/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from ruamel.ordereddict import ordereddict
1313
except:
1414
try:
15-
from collections import OrderedDict # nopyqver
15+
from collections import OrderedDict
1616
except ImportError:
1717
from ordereddict import OrderedDict
1818
# to get the right name import ... as ordereddict doesn't do that

0 commit comments

Comments
 (0)
X Tutup