Skip to content

Commit 7508895

Browse files
authored
fix setuptools deprecation (#3540)
FIX: #UserWarning: Unknown distribution option: 'tests_require'
1 parent 567e3f0 commit 7508895

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

moveit_configs_utils/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
maintainer_email="[email protected]",
1919
description="Python library for loading MoveIt config parameters in launch files",
2020
license="BSD",
21-
tests_require=["pytest"],
21+
extras_require={
22+
"test": [
23+
"pytest",
24+
],
25+
},
2226
entry_points={
2327
"console_scripts": [],
2428
},

0 commit comments

Comments
 (0)