From b9dc1b0c88ee1d811cb027f8581bc96d01b1e864 Mon Sep 17 00:00:00 2001 From: "Gunung P. Wibisono" <55311527+gunungpw@users.noreply.github.com> Date: Thu, 19 May 2022 09:03:10 +0700 Subject: [PATCH 1/4] add reference for name field `PEP 508` --- docs/pyproject.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/pyproject.md b/docs/pyproject.md index ec75e222e1e..60fba473266 100644 --- a/docs/pyproject.md +++ b/docs/pyproject.md @@ -16,6 +16,8 @@ The `tool.poetry` section of the `pyproject.toml` file is composed of multiple s ## name The name of the package. **Required** +This should be valid name accoording to specification in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) + ```toml name = "my-package" From 7e70b45209fcb54ee667f093c907b367be1d5fa5 Mon Sep 17 00:00:00 2001 From: "Gunung P. Wibisono" <55311527+gunungpw@users.noreply.github.com> Date: Thu, 19 May 2022 09:07:38 +0700 Subject: [PATCH 2/4] fix typo --- docs/pyproject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pyproject.md b/docs/pyproject.md index 60fba473266..1d36f2251af 100644 --- a/docs/pyproject.md +++ b/docs/pyproject.md @@ -16,7 +16,7 @@ The `tool.poetry` section of the `pyproject.toml` file is composed of multiple s ## name The name of the package. **Required** -This should be valid name accoording to specification in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) +This should be valid name according to specifications in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) ```toml From 5c1fad2dbec351aadc4ae5ef0e98b53dfe522285 Mon Sep 17 00:00:00 2001 From: "Gunung P. Wibisono" <55311527+gunungpw@users.noreply.github.com> Date: Thu, 19 May 2022 16:09:38 +0700 Subject: [PATCH 3/4] Update docs/pyproject.md Co-authored-by: Bartosz Sokorski --- docs/pyproject.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/pyproject.md b/docs/pyproject.md index 1d36f2251af..15869bfa6c3 100644 --- a/docs/pyproject.md +++ b/docs/pyproject.md @@ -16,7 +16,8 @@ The `tool.poetry` section of the `pyproject.toml` file is composed of multiple s ## name The name of the package. **Required** -This should be valid name according to specifications in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) + +This should be a valid name according to specifications in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) ```toml From 4265798e75dbc11a2243651fe94ba3a3cd9c04f7 Mon Sep 17 00:00:00 2001 From: "Gunung P. Wibisono" <55311527+gunungpw@users.noreply.github.com> Date: Fri, 20 May 2022 07:00:31 +0700 Subject: [PATCH 4/4] Fix wording Co-authored-by: Bjorn Neergaard --- docs/pyproject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pyproject.md b/docs/pyproject.md index 15869bfa6c3..cf717d992cd 100644 --- a/docs/pyproject.md +++ b/docs/pyproject.md @@ -17,7 +17,7 @@ The `tool.poetry` section of the `pyproject.toml` file is composed of multiple s The name of the package. **Required** -This should be a valid name according to specifications in [PEP 508 - Names](https://peps.python.org/pep-0508/#names) +This should be a valid name as defined by [PEP 508](https://peps.python.org/pep-0508/#names). ```toml