Skip to content

Commit

Permalink
chore: Rename Makefile 'env' rule to 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Nov 2, 2023
1 parent 114bab5 commit 327e062
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ clean-pyenv: ## Remove the created pyenv virtualenv.
pyenv virtualenv-delete -f $(VENV_NAME) && rm -f .python-version


.PHONY: env
env: ## Configure a local development setup.
.PHONY: dev
dev: ## Configure a local development setup.
@if command -v pyenv virtualenv > /dev/null 2>&1; then \
printf "Configuring a local dev environment using pyenv ...\n" >&2 \
&& echo $(PYTHON_VERSIONS) | tr ' ' '\n' | xargs -P 4 -I '{}' pyenv install -s '{}' \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ $ cd crimson

# Create your local development environment. This command also installs
# all supported Python versions using `pyenv`.
$ make env
$ make dev

# Run the test and linter suite to verify the setup.
$ make lint test
Expand Down

0 comments on commit 327e062

Please sign in to comment.