summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_dist_info.py
diff options
context:
space:
mode:
authorSteve Kowalik <steven@wedontsleep.org>2015-12-10 11:35:41 +1300
committerSteve Kowalik <steven@wedontsleep.org>2015-12-10 11:35:41 +1300
commita718819d2849196e902808301c9a95724510c5c1 (patch)
treeffa7e63c52e3101d76a3dc55387dd4f88e367716 /setuptools/tests/test_dist_info.py
parentdadd14d82c5f1db83704eb1c6da0b62998cb25a7 (diff)
downloadpython-setuptools-git-a718819d2849196e902808301c9a95724510c5c1.tar.gz
First shot at removing usage of _markerlib and switching to the PEP 508 implementation in packaging.
Diffstat (limited to 'setuptools/tests/test_dist_info.py')
-rw-r--r--setuptools/tests/test_dist_info.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py
index 6d0ab587..47d7a495 100644
--- a/setuptools/tests/test_dist_info.py
+++ b/setuptools/tests/test_dist_info.py
@@ -26,7 +26,6 @@ class TestDistInfo:
assert versioned.version == '2.718' # from filename
assert unversioned.version == '0.3' # from METADATA
- @pytest.mark.importorskip('ast')
def test_conditional_dependencies(self):
specs = 'splort==4', 'quux>=1.1'
requires = list(map(pkg_resources.Requirement.parse, specs))