Skip to content

Commit

Permalink
chore(python): minor updates to lint-related dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-beedie committed Oct 27, 2023
1 parent 18d9856 commit 253170a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions py-polars/requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
blackdoc==0.3.8
mypy==1.6.0
ruff==0.1.2
typos==1.16.20
mypy==1.6.1
ruff==0.1.3
typos==1.16.21
2 changes: 1 addition & 1 deletion py-polars/tests/unit/series/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def test_power() -> None:
assert_series_equal(a**a, pl.Series([1.0, 4.0], dtype=Float64))
assert_series_equal(b**b, pl.Series([None, 4.0], dtype=Float64))
assert_series_equal(a**b, pl.Series([None, 4.0], dtype=Float64))
assert_series_equal(a ** None, pl.Series([None] * len(a), dtype=Float64))
assert_series_equal(a**None, pl.Series([None] * len(a), dtype=Float64))
with pytest.raises(TypeError):
c**2
with pytest.raises(pl.ColumnNotFoundError):
Expand Down

0 comments on commit 253170a

Please sign in to comment.