diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2019-10-06 21:17:53 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-10-06 21:21:17 -0400 |
| commit | 53d662a9de0b8d449d167bf1c5cf291a2fecb094 (patch) | |
| tree | 6db51add6ea19241f75744d92f5ba86701799b69 | |
| parent | 7a909b2af9a06e669d41947bbd093710fcd1e663 (diff) | |
| download | external_python_setuptools-53d662a9de0b8d449d167bf1c5cf291a2fecb094.tar.gz external_python_setuptools-53d662a9de0b8d449d167bf1c5cf291a2fecb094.tar.bz2 external_python_setuptools-53d662a9de0b8d449d167bf1c5cf291a2fecb094.zip | |
Allow 'long_description_content_type' warnings for new versions of packaging. Fixes #1858.
| -rw-r--r-- | changelog.d/1858.misc.rst | 1 | ||||
| -rw-r--r-- | setuptools/tests/test_integration.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/1858.misc.rst b/changelog.d/1858.misc.rst new file mode 100644 index 00000000..b16ac1dd --- /dev/null +++ b/changelog.d/1858.misc.rst @@ -0,0 +1 @@ +Fixed failing integration test triggered by 'long_description_content_type' in packaging. diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py index 1e132188..1c0b2b18 100644 --- a/setuptools/tests/test_integration.py +++ b/setuptools/tests/test_integration.py @@ -143,6 +143,7 @@ def test_build_deps_on_distutils(request, tmpdir_factory, build_dep): 'tests_require', 'python_requires', 'install_requires', + 'long_description_content_type', ] assert not match or match.group(1).strip('"\'') in allowed_unknowns |
