Fixed #33778 -- Updated build-system configuration.
This removes unnecessary wheel dependency and __legacy__ fallback.
This commit is contained in:
parent
242499f2dc
commit
247e25897b
|
@ -195,8 +195,8 @@ this. For a small app like polls, this process isn't too difficult.
|
||||||
:caption: ``django-polls/pyproject.toml``
|
:caption: ``django-polls/pyproject.toml``
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ['setuptools>=40.8.0', 'wheel']
|
requires = ['setuptools>=40.8.0']
|
||||||
build-backend = 'setuptools.build_meta:__legacy__'
|
build-backend = 'setuptools.build_meta'
|
||||||
|
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
:caption: ``django-polls/setup.cfg``
|
:caption: ``django-polls/setup.cfg``
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ['setuptools>=40.8.0', 'wheel']
|
requires = ['setuptools>=40.8.0']
|
||||||
build-backend = 'setuptools.build_meta:__legacy__'
|
build-backend = 'setuptools.build_meta'
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
target-version = ['py38']
|
target-version = ['py38']
|
||||||
|
|
Loading…
Reference in New Issue