Skip to content

Commit 4b4f379

Browse files
committed
* Add spark tests
* Add pandas optional dependency
1 parent 4a2f873 commit 4b4f379

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if [ "${{ matrix.numpy_version }}" = "numpy<2" ]; then
3838
pip install ".[test,test_numpy_pre2]"
3939
else
40-
pip install ".[test]"
40+
pip install ".[test,spark]"
4141
fi
4242
4343
- name: Test with pytest

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ classifiers = ["Development Status :: 5 - Production/Stable",
3636
dynamic = ["version"]
3737

3838
[project.optional-dependencies]
39+
pandas = [
40+
"pandas"
41+
]
42+
spark = [
43+
"pyspark>=3.1; python_version <= '3.11'",
44+
]
3945
test = [
4046
"ipykernel>=5.1.3",
4147
"jupyter_client>=5.2.3",

0 commit comments

Comments
 (0)