Drop vendoring from packaging

This commit is contained in:
Tyler Goodlet 2017-08-24 16:53:24 -04:00
parent cb700208e8
commit 756db2131f
3 changed files with 2 additions and 4 deletions

View File

@ -4,4 +4,3 @@ omit =
*standalonetemplate.py
# oldinterpret could be removed, as it is no longer used in py26+
*oldinterpret.py
vendored_packages

View File

@ -75,7 +75,7 @@ def main():
setup_requires=['setuptools-scm'],
install_requires=install_requires,
extras_require=extras_require,
packages=['_pytest', '_pytest.assertion', '_pytest._code', '_pytest.vendored_packages'],
packages=['_pytest', '_pytest.assertion', '_pytest._code'],
py_modules=['pytest'],
zip_safe=False,
)

View File

@ -162,7 +162,7 @@ usedevelop = True
deps =
autopep8
commands =
autopep8 --in-place -r --max-line-length=120 --exclude=vendored_packages,test_source_multiline_block.py _pytest testing
autopep8 --in-place -r --max-line-length=120 --exclude=test_source_multiline_block.py _pytest testing
[testenv:jython]
changedir = testing
@ -213,4 +213,3 @@ filterwarnings =
[flake8]
max-line-length = 120
exclude = _pytest/vendored_packages/pluggy.py