Skip to content

Commit 44dd8d8

Browse files
authored
fix: fix license classifier (#1751)
1 parent 320d6bc commit 44dd8d8

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ authors = [
1414
description = "Extremely lightweight compatibility layer between dataframe libraries"
1515
readme = "README.md"
1616
keywords = ["dataframes", "interoperability", "pandas", "polars", "pyarrow", "dask", "modin", "cudf"]
17-
license = {file = "LICENSE.md"}
1817
classifiers = [
18+
"License :: OSI Approved :: MIT License",
1919
"Programming Language :: Python",
2020
"Operating System :: OS Independent",
2121
]

tests/expr_and_series/rolling_mean_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def test_rolling_mean_series(constructor_eager: ConstructorEager) -> None:
7676
@pytest.mark.skipif(PANDAS_VERSION < (1,), reason="too old for pyarrow")
7777
@pytest.mark.slow
7878
@pytest.mark.filterwarnings("ignore:.*:narwhals.exceptions.NarwhalsUnstableWarning")
79+
@pytest.mark.filterwarnings("ignore:.*is_sparse is deprecated:DeprecationWarning")
7980
def test_rolling_mean_hypothesis(center: bool, values: list[float]) -> None: # noqa: FBT001
8081
s = pd.Series(values)
8182
n_missing = random.randint(0, len(s) - 1) # noqa: S311

tests/expr_and_series/rolling_sum_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ def test_rolling_sum_series_invalid_params(
194194
)
195195
@pytest.mark.skipif(PANDAS_VERSION < (1,), reason="too old for pyarrow")
196196
@pytest.mark.filterwarnings("ignore:.*:narwhals.exceptions.NarwhalsUnstableWarning")
197+
@pytest.mark.filterwarnings("ignore:.*is_sparse is deprecated:DeprecationWarning")
197198
@pytest.mark.slow
198199
def test_rolling_sum_hypothesis(center: bool, values: list[float]) -> None: # noqa: FBT001
199200
s = pd.Series(values)

tests/expr_and_series/rolling_var_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def test_rolling_var_series(
105105
)
106106
@pytest.mark.skipif(PANDAS_VERSION < (1,), reason="too old for pyarrow")
107107
@pytest.mark.skipif(POLARS_VERSION < (1,), reason="different null behavior")
108+
@pytest.mark.filterwarnings("ignore:.*is_sparse is deprecated:DeprecationWarning")
108109
@pytest.mark.filterwarnings("ignore:.*:narwhals.exceptions.NarwhalsUnstableWarning")
109110
def test_rolling_var_hypothesis(center: bool, values: list[float]) -> None: # noqa: FBT001
110111
s = pd.Series(values)

0 commit comments

Comments
 (0)