We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d300796 commit d3eb893Copy full SHA for d3eb893
Makefile
@@ -10,9 +10,9 @@ REQUIREMENTS_FILE = requirements-dev-py$(PYTHON_VERSION_NO_DOTS).txt
10
dev-env:
11
python$(PYTHON_VERSION) -m venv .venv$(PYTHON_VERSION_NO_DOTS)
12
ifeq ($(OS), Windows_NT)
13
- .venv$(PYTHON_VERSION)\Scripts\activate
+ .venv$(PYTHON_VERSION_NO_DOTS)\Scripts\activate
14
else
15
- . .venv$(PYTHON_VERSION)/bin/activate
+ . .venv$(PYTHON_VERSION_NO_DOTS)/bin/activate
16
endif
17
18
dev: dev-env
0 commit comments