Skip to content

Commit c34e62b

Browse files
committed
fix: add missing list definition syntax in pyproject.toml
1 parent e1fab3c commit c34e62b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{cookiecutter.project_name}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Repository = "https://github.com/{{ cookiecutter.github_user | lower | replace('
4949

5050
{% if cookiecutter.add_rust_extension == 'y' -%}
5151
[build-system]
52-
requires = "maturin>=1.3.0,<2.0"
52+
requires = ["maturin>=1.3.0,<2.0"]
5353
build-backend = "maturin"
5454

5555
[tool.maturin]
5656
rust-src = "rust"
5757
{% else -%}
5858
[build-system]
59-
requires = "setuptools>=61.0"
59+
requires = ["setuptools>=61.0"]
6060
build-backend = "setuptools.build_meta"
6161
{% endif -%}

0 commit comments

Comments
 (0)