Skip to content

Commit 316c432

Browse files
committed
Merge remote-tracking branch 'upstream/master' into join-override
* upstream/master: Ignore example.grib.0112.idx file (pydata#3198) small updates to the contributing.rst (it could use more) (pydata#3193) Remove future statements (pydata#3194) update instructions (pydata#3195)
2 parents 3784480 + c517bc3 commit 316c432

15 files changed

+30
-45
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ dask-worker-space/
6666
doc/_build
6767
doc/generated
6868
xarray/version.py
69+
xarray/tests/data/*.grib.*.idx
6970

7071
# Sync tools
7172
Icon*

.pre-commit-config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,16 @@ repos:
1010
rev: v2.2.3
1111
hooks:
1212
- id: flake8
13+
# run these occasionally, ref discussion https://github.com/pydata/xarray/pull/3194
14+
# - repo: https://github.com/asottile/pyupgrade
15+
# rev: v1.22.1
16+
# hooks:
17+
# - id: pyupgrade
18+
# args:
19+
# - "--py3-only"
20+
# # remove on f-strings in Py3.7
21+
# - "--keep-percent-format"
22+
# - repo: https://github.com/timothycrosley/isort
23+
# rev: 4.3.21-2
24+
# hooks:
25+
# - id: isort

asv_bench/benchmarks/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import itertools
42

53
import numpy as np

asv_bench/benchmarks/dataarray_missing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import pandas as pd
42

53
import xarray as xr

asv_bench/benchmarks/dataset_io.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import os
42

53
import numpy as np

asv_bench/benchmarks/indexing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import numpy as np
42
import pandas as pd
53

asv_bench/benchmarks/interp.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import numpy as np
42
import pandas as pd
53

asv_bench/benchmarks/reindexing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import numpy as np
42

53
import xarray as xr

asv_bench/benchmarks/rolling.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import numpy as np
42
import pandas as pd
53

asv_bench/benchmarks/unstacking.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function
2-
31
import numpy as np
42

53
import xarray as xr

0 commit comments

Comments
 (0)