File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ Export functions properly using `__all__ ` in `__init__.py `.
Original file line number Diff line number Diff line change 37
37
__maintainer_email__ ,
38
38
SEMVER_SPEC_VERSION ,
39
39
)
40
+
41
+ __all__ = [
42
+ "bump_build" ,
43
+ "bump_major" ,
44
+ "bump_minor" ,
45
+ "bump_patch" ,
46
+ "compare" ,
47
+ "bump_prerelease" ,
48
+ "finalize_version" ,
49
+ "format_version" ,
50
+ "match" ,
51
+ "max_ver" ,
52
+ "min_ver" ,
53
+ "parse" ,
54
+ "parse_version_info" ,
55
+ "replace" ,
56
+ "cmd_bump" ,
57
+ "cmd_compare" ,
58
+ "cmd_nextver" ,
59
+ "cmd_check" ,
60
+ "createparser" ,
61
+ "process" ,
62
+ "main" ,
63
+ "Version" ,
64
+ "VersionInfo" ,
65
+ "__version__" ,
66
+ "__author__" ,
67
+ "__maintainer__" ,
68
+ "__author_email__" ,
69
+ "__description__" ,
70
+ "__maintainer_email__" ,
71
+ "SEMVER_SPEC_VERSION" ,
72
+ ]
You can’t perform that action at this time.
0 commit comments