Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(python): minor updates to lint-related dependencies #12073

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: Lint Markdown and TOML
uses: dprint/[email protected]
- name: Spell Check with Typos
uses: crate-ci/[email protected].20
uses: crate-ci/[email protected].21
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