Skip to content

Commit 2ceaeab

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6a1e812 commit 2ceaeab

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

patsy/util.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
else:
4545
have_pandas = True
4646
import packaging.version
47-
PANDAS3 = packaging.version.parse(pandas.__version__) > packaging.version.parse("2.99")
47+
48+
PANDAS3 = packaging.version.parse(pandas.__version__) > packaging.version.parse(
49+
"2.99"
50+
)
4851

4952
# Pandas versions < 0.9.0 don't have Categorical
5053
# Can drop this guard whenever we drop support for such older versions of

0 commit comments

Comments
 (0)