We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15097fe commit dd9e040Copy full SHA for dd9e040
pyproject.toml
@@ -1,6 +1,6 @@
1
[build-system]
2
# Minimum requirements for the build system to execute.
3
-requires = ["setuptools", "wheel"] # PEP 508 specifications.
+requires = ["setuptools>=46.4.0", "wheel"] # PEP 508 specifications.
4
5
# Actually tell PEP517 tools to call setuptools
6
build-backend = "setuptools.build_meta"
setup.py
@@ -15,8 +15,7 @@ def requirements(section=None):
15
16
# See setup.cfg for the actual configuration.
17
setup(
18
- # setup needs to be able to import the library, for attr: to work
19
- setup_requires=requirements() + ['pytest-runner'],
+ setup_requires=['pytest-runner'],
20
install_requires=requirements(),
21
tests_require=requirements('tests'),
22
)
0 commit comments