Skip to content

Commit

Permalink
remove use feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jarq6c committed Dec 15, 2021
1 parent acecb2c commit e033f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ all-tests: install
$(PYTHON) -m pytest -s

install: $(PYENV)/bin/activate
$(PYTHON) -m pip install --use-feature=in-tree-build $(SUBPACKAGES_PATHS)
$(PYTHON) -m pip install $(SUBPACKAGES_PATHS)

uninstall: $(PYENV)/bin/activate
$(PYTHON) -m pip uninstall -y $(addprefix $(PACKAGE)., $(SUBPACKAGES_WITHOUT_EXTRA_REQUIRE))

develop: $(PYENV)/bin/activate
$(PYTHON) -m pip install --use-feature=in-tree-build --editable $(SUBPACKAGES_PATHS)
$(PYTHON) -m pip install --editable $(SUBPACKAGES_PATHS)


$(PYENV)/bin/activate:
Expand Down

0 comments on commit e033f9e

Please sign in to comment.