Skip to content

Commit

Permalink
fix: declare pyarrow optional for 3.12 (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 authored Oct 12, 2023
1 parent a1b24fc commit 507c908
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
pip install wheel
pip install pytest-cov
pip install dask[complete]
pip install dask[array,dataframe,distributed,diagnostics]
pip install -q --no-cache-dir -e .[complete,test]
pytest --cov=dask_awkward --cov-report=xml
- name: Upload Coverage to Codecov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: install
run: |
pip install pip wheel -U
pip install dask[complete]
pip install dask[array,dataframe,distributed,diagnostics]
pip install -q --no-cache-dir .[complete,test]
pip list
- name: test
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Homepage = "https://github.com/dask-contrib/dask-awkward"

[project.optional-dependencies]
io = [
"aiohttp",
"pyarrow",
"aiohttp;python_version<\"3.12\"",
"pyarrow;python_version<\"3.12\"",
]
complete = [
"dask-awkward[io]",
Expand Down

0 comments on commit 507c908

Please sign in to comment.