Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xoolive committed Jun 12, 2024
1 parent 64d9f12 commit 0943dbe
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Install dependencies
run: |
poetry install -E full
poetry install -E full -E libarchive
- name: Style checking
run: |
Expand Down
90 changes: 46 additions & 44 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ onnxruntime = { version = ">=1.12", python = "<3.13" }

# -- Optional dependencies --
xarray = { version = ">=0.18.2", optional = true }
libarchive = { version = ">=0.4.7,<1.0.0", optional = true }
scikit-learn = { version = ">=1.0", optional = true }

libarchive = { version = ">=0.4.7,<1.0.0", optional = true }

# -- Visualization --
altair = {version = "^5.3", optional = true}
ipywidgets = {version = "^8.1", optional = true}
Expand All @@ -89,7 +90,6 @@ pyspark = { version = ">=3.3.0", optional = true }
[tool.poetry.extras]
full = [
"xarray",
# "libarchive",
"scikit-learn",
"pyspark",
"altair",
Expand All @@ -102,6 +102,8 @@ altair = ["altair"]
plotly = ["plotly"]
leaflet = ["ipyleaflet", "ipywidgets"]
lonboard = ["lonboard"]
libarchive = ["libarchive"]
spark = ["pyspark"]

[tool.poetry.group.dev.dependencies]
pre-commit = ">=2.13.0"
Expand Down

0 comments on commit 0943dbe

Please sign in to comment.