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 2ef029c commit d300796Copy full SHA for d300796
Makefile
@@ -2,12 +2,13 @@
2
# This is expected to have the form X.Y.
3
# The corresponding requirements file is requirements-dev-pyXY.txt.
4
PYTHON_VERSION ?= 3.13
5
+PYTHON_VERSION_NO_DOTS = $(subst .,,$(PYTHON_VERSION))
6
7
# Generate requirements filename based on Python version
-REQUIREMENTS_FILE = requirements-dev-py$(subst .,,$(PYTHON_VERSION)).txt
8
+REQUIREMENTS_FILE = requirements-dev-py$(PYTHON_VERSION_NO_DOTS).txt
9
10
dev-env:
- python$(PYTHON_VERSION) -m venv .venv$(PYTHON_VERSION)
11
+ python$(PYTHON_VERSION) -m venv .venv$(PYTHON_VERSION_NO_DOTS)
12
ifeq ($(OS), Windows_NT)
13
.venv$(PYTHON_VERSION)\Scripts\activate
14
else
0 commit comments