Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove reference to setuptools.command.test.test
Originally skbuild supplied its own test command which called "develop" before calling original setuptools test command. In order to avoid calling "develop", we directly exchanged this skbuild.test command with setuptools.command.test.test (It is though unclear if test command from setuptools was ever called by any parts of our solution.) Note that in setup.py we only imported setuptools, not its submodules like setuptools.command.test. However setuptools.command.test was imported directly in the skbuild, where they exchanged 'test' with their own command. So we happened to use it indirectly. In 0.18 release skbuild removed custom test command in [1]. As setuptools.command.test import went along with it, we started getting errors like module 'setuptools.command' has no attribute 'test' As test command is supposed to be deprecated and reason for our own override in setup.py is gone, we just drop the line altogether. [1]scikit-build/scikit-build@dde5e79
- Loading branch information