Skip to content

Commit 24223e5

Browse files
committed
fixup
2 parents 13793a2 + fd38824 commit 24223e5

File tree

118 files changed

+1957
-916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+1957
-916
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ repos:
1919
types_or: [python, rst, markdown]
2020
files: ^(pandas|doc)/
2121
- repo: https://github.com/pre-commit/pre-commit-hooks
22-
rev: v3.4.0
22+
rev: v4.0.1
2323
hooks:
2424
- id: debug-statements
2525
- id: end-of-file-fixer
2626
exclude: \.txt$
2727
- id: trailing-whitespace
2828
- repo: https://github.com/cpplint/cpplint
29-
rev: f7061b1 # the latest tag does not have the hook
29+
rev: 1.5.5
3030
hooks:
3131
- id: cpplint
3232
# We don't lint all C files because we don't want to lint any that are built
@@ -57,7 +57,7 @@ repos:
5757
hooks:
5858
- id: isort
5959
- repo: https://github.com/asottile/pyupgrade
60-
rev: v2.12.0
60+
rev: v2.18.3
6161
hooks:
6262
- id: pyupgrade
6363
args: [--py37-plus]
@@ -72,7 +72,7 @@ repos:
7272
types: [text] # overwrite types: [rst]
7373
types_or: [python, rst]
7474
- repo: https://github.com/asottile/yesqa
75-
rev: v1.2.2
75+
rev: v1.2.3
7676
hooks:
7777
- id: yesqa
7878
additional_dependencies:

ci/deps/actions-38-numpydev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212

1313
# pandas dependencies
1414
- pytz
15-
- pip=20.2
15+
- pip
1616
- pip:
1717
- cython==0.29.21 # GH#34014
1818
- "git+git://github.com/dateutil/dateutil.git"

doc/source/_static/style/tg_ax0.png

12.7 KB
Loading
13.2 KB
Loading
13.4 KB
Loading
13.3 KB
Loading
12.5 KB
Loading

doc/source/_static/style/tg_gmap.png

12.3 KB
Loading

doc/source/reference/style.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Builtin styles
5656
Styler.highlight_min
5757
Styler.highlight_between
5858
Styler.background_gradient
59+
Styler.text_gradient
5960
Styler.bar
6061

6162
Style export and import

doc/source/user_guide/groupby.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,6 +1000,7 @@ instance method on each data group. This is pretty easy to do by passing lambda
10001000
functions:
10011001

10021002
.. ipython:: python
1003+
:okwarning:
10031004
10041005
grouped = df.groupby("A")
10051006
grouped.agg(lambda x: x.std())
@@ -1009,6 +1010,7 @@ arguments. Using a bit of metaprogramming cleverness, GroupBy now has the
10091010
ability to "dispatch" method calls to the groups:
10101011

10111012
.. ipython:: python
1013+
:okwarning:
10121014
10131015
grouped.std()
10141016

0 commit comments

Comments
 (0)