Skip to content

Commit

Permalink
clear test builder cache to maybe actually get dask?
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Feb 6, 2024
1 parent faf956c commit d345232
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: 'pip'

- name: Install dependencies
run: pip install -e .[tests]
run: pip install -e ".[tests]"

- name: Run Tests
run: pytest
Expand Down
120 changes: 60 additions & 60 deletions poetry.lock

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

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ python = "^3.11"
pydantic = ">=2.3.0"
nptyping = ">=2.5.0"
blosc2 = "^2.5.1"
dask = "^2024.1.1"
h5py = "^3.10.0"
dask = { version=">=2024.1.1", extras=["array"]}
h5py = ">=3.10.0"
pytest = { version=">=7.4.0", optional = true}
pytest-depends = {version="^1.0.1", optional = true}
coverage = {version = ">=6.1.1", optional = true}
Expand All @@ -30,9 +30,9 @@ linkml = {version = "^1.6.10", optional = true}
linkml-runtime = {version = "^1.6.3", optional = true}

[tool.poetry.extras]
proxy = [
"dask", "h5py"
]
#proxy = [
# "dask", "h5py"
#]
linkml = [
"linkml", "linkml-runtime"
]
Expand All @@ -45,7 +45,7 @@ docs = [
dev = [
"sphinx-autobuild", "black", "ruff",
# proxy
"dask", "h5py",
# "dask", "h5py",
# linkml
"linkml", "linkml-runtime",
# tests
Expand Down

0 comments on commit d345232

Please sign in to comment.