Skip to content

Commit 44ee242

Browse files
simonjayhawkinsMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR pandas-dev#25455: CI: add __init__.py to isort skip list
1 parent 5558224 commit 44ee242

15 files changed

+34
-0
lines changed

ci/deps/azure-27-compat.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies:
2121
- pytest
2222
- pytest-xdist
2323
- pytest-mock
24+
- isort
2425
- pip:
2526
- html5lib==1.0b2
2627
- beautifulsoup4==4.2.1

ci/deps/azure-27-locale.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dependencies:
2424
- pytest-xdist
2525
- pytest-mock
2626
- hypothesis>=3.58.0
27+
- isort
2728
- pip:
2829
- html5lib==1.0b2
2930
- beautifulsoup4==4.2.1

ci/deps/azure-36-locale_slow.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ dependencies:
3030
- pytest-xdist
3131
- pytest-mock
3232
- moto
33+
- isort
3334
- pip:
3435
- hypothesis>=3.58.0

ci/deps/azure-37-locale.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ dependencies:
2828
- pytest
2929
- pytest-xdist
3030
- pytest-mock
31+
- isort
3132
- pip:
3233
- hypothesis>=3.58.0
3334
- moto # latest moto in conda-forge fails with 3.7, move to conda dependencies when this is fixed

ci/deps/azure-37-numpydev.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ dependencies:
1010
- pytest-xdist
1111
- pytest-mock
1212
- hypothesis>=3.58.0
13+
- isort
1314
- pip:
1415
- "git+git://github.com/dateutil/dateutil.git"
1516
- "-f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"

ci/deps/azure-macos-35.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ dependencies:
2525
- pytest
2626
- pytest-xdist
2727
- pytest-mock
28+
- isort
2829
- pip:
2930
- python-dateutil==2.5.3
3031
- hypothesis>=3.58.0

ci/deps/azure-windows-27.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ dependencies:
3030
- pytest-mock
3131
- moto
3232
- hypothesis>=3.58.0
33+
- isort

ci/deps/azure-windows-36.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ dependencies:
2727
- pytest-xdist
2828
- pytest-mock
2929
- hypothesis>=3.58.0
30+
- isort

ci/deps/travis-27.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ dependencies:
4444
- pytest-mock
4545
- moto==1.3.4
4646
- hypothesis>=3.58.0
47+
- isort
4748
- pip:
4849
- backports.lzma
4950
- pandas-gbq

ci/deps/travis-36-doc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ dependencies:
4343
# universal
4444
- pytest
4545
- pytest-xdist
46+
- isort

ci/deps/travis-36-locale.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ dependencies:
3232
- pytest-xdist
3333
- pytest-mock
3434
- moto
35+
- isort
3536
- pip:
3637
- hypothesis>=3.58.0

ci/deps/travis-36-slow.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ dependencies:
3030
- pytest-mock
3131
- moto
3232
- hypothesis>=3.58.0
33+
- isort

ci/deps/travis-36.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ dependencies:
3838
- pytest-cov
3939
- pytest-mock
4040
- hypothesis>=3.58.0
41+
- isort
4142
- pip:
4243
- brotlipy
4344
- coverage

ci/deps/travis-37.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ dependencies:
1717
- pytest-mock
1818
- hypothesis>=3.58.0
1919
- s3fs
20+
- isort
2021
- pip:
2122
- moto

setup.cfg

+20
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,23 @@ skip=
153153
asv_bench/benchmarks/dtypes.py
154154
asv_bench/benchmarks/strings.py
155155
asv_bench/benchmarks/period.py
156+
pandas/__init__.py
157+
pandas/plotting/__init__.py
158+
pandas/tests/extension/decimal/__init__.py
159+
pandas/tests/extension/base/__init__.py
160+
pandas/io/msgpack/__init__.py
161+
pandas/io/json/__init__.py
162+
pandas/io/clipboard/__init__.py
163+
pandas/io/excel/__init__.py
164+
pandas/compat/__init__.py
165+
pandas/compat/numpy/__init__.py
166+
pandas/core/arrays/__init__.py
167+
pandas/core/groupby/__init__.py
168+
pandas/core/internals/__init__.py
169+
pandas/api/__init__.py
170+
pandas/api/extensions/__init__.py
171+
pandas/api/types/__init__.py
172+
pandas/_libs/__init__.py
173+
pandas/_libs/tslibs/__init__.py
174+
pandas/util/__init__.py
175+
pandas/arrays/__init__.py

0 commit comments

Comments
 (0)