We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adc7ad0 commit 44faf11Copy full SHA for 44faf11
src/trove_setup/guide.py
@@ -69,9 +69,9 @@ def run_guided() -> list[str]:
69
)
70
parsed_min_python_version = Version(min_python_version)
71
parsed_max_python_version = Version(max_python_version)
72
- assert (
73
- parsed_min_python_version <= parsed_max_python_version
74
- ), "You min python version cannot be higher than your max python version"
+ assert parsed_min_python_version <= parsed_max_python_version, (
+ "You min python version cannot be higher than your max python version"
+ )
75
for version, classifier in python_versions.items():
76
if (
77
version >= parsed_min_python_version
0 commit comments