From d5c2a6214f6966f5f52005ed61b1423e21f5e19e Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 12 Mar 2021 04:36:48 +0000 Subject: [PATCH] Update robotframework requirement from <4 to <5 Updates the requirements on [robotframework](https://github.com/robotframework/robotframework) to permit the latest version. - [Release notes](https://github.com/robotframework/robotframework/releases) - [Commits](https://github.com/robotframework/robotframework/compare/2.0...v4.0) Signed-off-by: dependabot-preview[bot] --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 96f14e8..4bb979c 100644 --- a/setup.py +++ b/setup.py @@ -35,11 +35,11 @@ 'KiCadLibrary.kicad_library_utils.sch', 'KiCadLibrary.kicad_library_utils.schlib'], package_dir={'': 'src'}, - install_requires=['robotframework<4'], - setup_requires=['setuptools_scm', 'robotframework<4'] + pytest_runner, + install_requires=['robotframework<5'], + setup_requires=['setuptools_scm', 'robotframework<5'] + pytest_runner, tests_require=['pytest-runner', 'pytest-cov', 'pytest-mock', 'coverage', 'pytest-pylint', 'pytest-html', 'setuptools_scm', - 'robotframework<4', 'mock', 'natsort'], + 'robotframework<5', 'mock', 'natsort'], test_suite='tests', cmdclass = {'build_rf_docs': setup_command.BuildLibDoc}, zip_safe = True,