Skip to content

Commit 415a801

Browse files
committed
back to dev
1 parent 427e020 commit 415a801

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.2.1 (unreleased)
4+
5+
- nothing yet
6+
37
## 1.2.0 (2025-06-04)
48

59
- add pyrefly type checker support

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "mxmake"
33
description = "Generates a Python project-specific Makefile by using an extensible library of configurable Makefile snippets."
4-
version = "1.2.0"
4+
version = "1.2.1.dev0"
55
keywords = ["development", "deployment", "make"]
66
authors = [
77
{name = "MX Stack Developers", email = "dev@bluedynamics.com" }

src/mxmake/topics/core/mxenv.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,12 @@ endif
100100

101101
MXENV_TARGET:=$(SENTINEL_FOLDER)/mxenv.sentinel
102102
$(MXENV_TARGET): $(SENTINEL)
103+
ifneq ("$(PYTHON_PACKAGE_INSTALLER)$(MXENV_UV_GLOBAL)","uvfalse")
103104
@$(PRIMARY_PYTHON) -c "import sys; vi = sys.version_info; sys.exit(1 if (int(vi[0]), int(vi[1])) >= tuple(map(int, '$(PYTHON_MIN_VERSION)'.split('.'))) else 0)" \
104105
&& echo "Need Python >= $(PYTHON_MIN_VERSION)" && exit 1 || :
106+
else
107+
@echo "Use Python $(PYTHON_MIN_VERSION) over uv"
108+
endif
105109
@[[ "$(VENV_ENABLED)" == "true" && "$(VENV_FOLDER)" == "" ]] \
106110
&& echo "VENV_FOLDER must be configured if VENV_ENABLED is true" && exit 1 || :
107111
@[[ "$(VENV_ENABLED)$(PYTHON_PACKAGE_INSTALLER)" == "falseuv" ]] \

0 commit comments

Comments
 (0)