File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
160
160
-i " pandas.errors.DuplicateLabelError SA01" \
161
161
-i " pandas.errors.IntCastingNaNError SA01" \
162
162
-i " pandas.errors.InvalidIndexError SA01" \
163
- -i " pandas.errors.InvalidVersion SA01" \
164
163
-i " pandas.errors.NullFrequencyError SA01" \
165
164
-i " pandas.errors.NumExprClobberingError SA01" \
166
165
-i " pandas.errors.NumbaUtilError SA01" \
Original file line number Diff line number Diff line change @@ -114,6 +114,14 @@ class InvalidVersion(ValueError):
114
114
"""
115
115
An invalid version was found, users should refer to PEP 440.
116
116
117
+ The ``InvalidVersion`` exception is raised when a version string is
118
+ improperly formatted. Pandas uses this exception to ensure that all
119
+ version strings are PEP 440 compliant.
120
+
121
+ See Also
122
+ --------
123
+ util.version.Version : Class for handling and parsing version strings.
124
+
117
125
Examples
118
126
--------
119
127
>>> pd.util.version.Version("1.")
You can’t perform that action at this time.
0 commit comments