Skip to content

Commit 6436168

Browse files
committed
block
1 parent 22ec7f9 commit 6436168

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

.github/workflows/black-ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
black-format-check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v3
88
- uses: psf/black@stable
99
with:
1010
options: "--diff --check"

.github/workflows/documentation.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,6 @@ jobs:
3434
- name: Install requirements dev
3535
run: python -m pip install -r requirements-dev.txt
3636

37-
- name: Cache pip
38-
uses: actions/cache@v2
39-
with:
40-
path: ~/.cache/pip
41-
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
42-
restore-keys: |
43-
${{ runner.os }}-pip-
44-
${{ runner.os }}-
45-
4637
- name: Generate coverage report
4738
run: |
4839
pip install pytest

_unittests/ut_df/test_streaming_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def compares(a, b, how):
301301
sdf20 = dummy_streaming_dataframe(20)
302302
sdf30 = dummy_streaming_dataframe(30)
303303
# itself
304-
hows = "inner left right outer".split()
304+
hows = ["inner", "left", "right", "outer"]
305305
for how in hows:
306306
compares(sdf20, sdf20, how)
307307
compares(sdf20, sdf20, how)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ select = [
7777
"**" = [
7878
"B905",
7979
"C401", "C408", "C413",
80-
"RUF012", "RUF100", "RUF010",
80+
"RUF012", "RUF100", "RUF010", "RUF051",
8181
"SIM108", "SIM910", "SIM110", "SIM102", "SIM114", "SIM103",
82-
"UP015", "UP027", "UP031", "UP034", "UP032", "UP006", "UP035", "UP007", "UP038"
82+
"UP015", "UP027", "UP031", "UP034", "UP032", "UP045", "UP006", "UP035", "UP007", "UP038"
8383
]
8484
"**/plot*.py" = ["B018"]
8585
"_doc/examples/**.py" = ["E402", "F811", "B018"]

0 commit comments

Comments
 (0)