Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env: ## Display information about the current environment.

.PHONY: install-dev
install-dev: ## Install all dependencies including dev and test dependencies, as well as pre-commit.
poetry install --with dev --with test --extras "tensorflow h5py"
poetry install --with dev --with test --extras "h5py"
pre-commit install

.PHONY: install
Expand All @@ -20,7 +20,7 @@ install-prod: ## Install prod dependencies.

.PHONY: install-test
install-test: ## Install test dependencies.
poetry install --with test --extras "tensorflow h5py"
poetry install --with test --extras "h5py"

.PHONY: clean
clean: ## Uninstall modelscan
Expand Down
1 change: 1 addition & 0 deletions modelscan/data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Data files for modelscan."""
Loading