diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-12-06 12:39:41 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-12-06 12:39:41 -0500 |
commit | 65441834e019b064bae862d3cfd9971ecbd1c7f8 (patch) | |
tree | 20d138b929d15f9479d2567dc44809aadb02e9a2 | |
parent | 9365c7ed419e2c2ab9a83447a0520da439d956dc (diff) | |
download | python-setuptools-git-65441834e019b064bae862d3cfd9971ecbd1c7f8.tar.gz |
Remove conditional skip, no longer relevant.
-rw-r--r-- | setuptools/tests/test_integration.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py index 24cef480..23604910 100644 --- a/setuptools/tests/test_integration.py +++ b/setuptools/tests/test_integration.py @@ -123,8 +123,6 @@ build_deps = ['appdirs', 'packaging', 'pyparsing', 'six'] @pytest.mark.parametrize("build_dep", build_deps) -@pytest.mark.skipif( - sys.version_info < (3, 6), reason='run only on late versions') def test_build_deps_on_distutils(request, tmpdir_factory, build_dep): """ All setuptools build dependencies must build without |