Skip to content

Commit

Permalink
chore(python): Fix some minor Makefile issues (#11276)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Sep 24, 2023
1 parent 3a198ef commit fb3f16d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions py-polars/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,15 @@ build: .venv ## Compile and install Polars for development
@unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop

.PHONY: build-debug-opt
build-debug-opt: .venv ## Compile and install Polars for development, with minimal optimizations turned on
build-debug-opt: .venv ## Compile and install Polars with minimal optimizations turned on
@unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --profile opt-dev

.PHONY: build-debug-opt-subset
build-debug-opt: .venv ## Compile and install Polars for development, with minimal optimizations turned on \
and no default features.
build-debug-opt-subset: .venv ## Compile and install Polars with minimal optimizations turned on and no default features
@unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --no-default-features --profile opt-dev

.PHONY: build-opt
build-opt: .venv ## Compile and install Polars for performance-sensitive development, with nearly \
full optimization on and debug assertions turned off, but with debug symbols on
build-opt: .venv ## Compile and install Polars with nearly full optimization on and debug assertions turned off, but with debug symbols on
@unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --profile debug-release

.PHONY: build-release
Expand Down

0 comments on commit fb3f16d

Please sign in to comment.