-
Notifications
You must be signed in to change notification settings - Fork 61
Update packaging guide and repo-review to match spec13 #438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -241,5 +241,65 @@ def check(pyproject: dict[str, Any]) -> bool: | |||||||||||||||||||||||||||||||
return "filterwarnings" in options | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
class PP310(PyProject): | ||||||||||||||||||||||||||||||||
"Tests target is test not test (spec13)" | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
? |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
requires = {"PP301"} | ||||||||||||||||||||||||||||||||
url = mk_url("pytest") | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
@staticmethod | ||||||||||||||||||||||||||||||||
def check(pyproject: dict[str, Any]) -> bool | None: | ||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Tests target should be `tests` not `test` | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
```toml | ||||||||||||||||||||||||||||||||
[project.optional-dependencies] | ||||||||||||||||||||||||||||||||
tests = [ | ||||||||||||||||||||||||||||||||
'pytest', | ||||||||||||||||||||||||||||||||
... | ||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||
if "tool" not in pyproject: | ||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||
if "project.optional-dependencies" not in pyproject["tool"]: | ||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||
optional_deps = pyproject["tool"]["project.optional-dependencies"] | ||||||||||||||||||||||||||||||||
if "tests" in optional_deps: | ||||||||||||||||||||||||||||||||
return True | ||||||||||||||||||||||||||||||||
return "test" not in optional_deps | ||||||||||||||||||||||||||||||||
Comment on lines
+264
to
+271
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Try pattern matching here. ;) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I need to practice more my pattern matching :-) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SPEC 0 should make that easier now. :) |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
class PP311(PyProject): | ||||||||||||||||||||||||||||||||
"Tests target is `docs not` `doc` (spec13)" | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
requires = {"PP301"} | ||||||||||||||||||||||||||||||||
url = mk_url("pytest") | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
@staticmethod | ||||||||||||||||||||||||||||||||
def check(pyproject: dict[str, Any]) -> bool | None: | ||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
docs target should be `docs` not `doc` | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, I am not interested in having a check that goes against the official Python packaging specifications, which state https://packaging.python.org/en/latest/specifications/core-metadata/#provides-extra-multiple-use However, given that |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
```toml | ||||||||||||||||||||||||||||||||
[project.optional-dependencies] | ||||||||||||||||||||||||||||||||
docs = [ | ||||||||||||||||||||||||||||||||
'sphinx', | ||||||||||||||||||||||||||||||||
... | ||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||
if "tool" not in pyproject: | ||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||
if "project.optional-dependencies" not in pyproject["tool"]: | ||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||
optional_deps = pyproject["tool"]["project.optional-dependencies"] | ||||||||||||||||||||||||||||||||
if "docs" in optional_deps: | ||||||||||||||||||||||||||||||||
return True | ||||||||||||||||||||||||||||||||
return "doc" not in optional_deps | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
def repo_review_checks() -> dict[str, PyProject]: | ||||||||||||||||||||||||||||||||
return {p.__name__: p() for p in PyProject.__subclasses__()} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,6 @@ docs = | |
sphinx>=7.0 | ||
sphinx-autodoc-typehints | ||
sphinx-copybutton | ||
test = | ||
tests = | ||
pytest>=6 | ||
pytest-cov>=3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think a check can end in a letter. I think this could be merged into the PY004 check? Though some projects have multiple
docs-*
folders, it's important not to error on those. Maybe just making sure/doc
doesn't exist is an option?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it works :-)
One of my main concern was to not mark a project as "not having docs", and think of a plan to convey to projects that
doc
used to be ok.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, interesting. I feel like I've encoded this somewhere. Maybe not.