Skip to content

Commit

Permalink
fix: add lib modules to top level import; enable simple downstream …
Browse files Browse the repository at this point in the history
…test in CI (#336)
  • Loading branch information
douglasdavis authored Aug 2, 2023
1 parent 122ca4c commit fcdc8da
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/envs/environment-3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ dependencies:
- awkward
- dask-histogram
- uproot
- hist
1 change: 1 addition & 0 deletions .github/envs/environment-3.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ dependencies:
- awkward
- dask-histogram
- uproot
- hist
1 change: 1 addition & 0 deletions .github/envs/environment-3.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ dependencies:
- awkward
- dask-histogram
- uproot
- hist
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,14 @@ docs = [
]
test = [
"dask-awkward[complete]",
"dask-histogram",
"distributed",
"hist",
"pandas",
"pytest >=6.0",
"pytest-cov >=3.0.0",
"requests >=2.27.1",
"uproot",
]

[project.entry-points."dask.sizeof"]
Expand Down
7 changes: 7 additions & 0 deletions src/dask_awkward/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
from dask_awkward import config # isort:skip; load awkward config

import dask_awkward.lib.core as core
import dask_awkward.lib.describe as describe
import dask_awkward.lib.inspect as inspect
import dask_awkward.lib.operations as operations
import dask_awkward.lib.optimize as optimize
import dask_awkward.lib.reducers as reducers
import dask_awkward.lib.structure as structure
from dask_awkward.lib.core import Array, PartitionCompatibility, Record, Scalar
from dask_awkward.lib.core import _type as type
from dask_awkward.lib.core import (
Expand Down

0 comments on commit fcdc8da

Please sign in to comment.