Skip to content

Commit 5b20984

Browse files
committed
Allow min. Python 3.11 version in makefile
1 parent 5919937 commit 5b20984

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ ifeq (, $(shell which $(PYTHON) ))
124124
endif
125125

126126
# version ok?
127-
PYTHON_VERSION_MIN=3.12
127+
PYTHON_VERSION_MIN=3.11
128128
PYTHON_VERSION_OK=$(shell $(PYTHON) -c 'import sys; print(int(float("%d.%d"% sys.version_info[0:2]) >= float($(PYTHON_VERSION_MIN))))' )
129129
ifeq ($(PYTHON_VERSION_OK),0)
130130
$(error "Need python $(PYTHON_VERSION) >= $(PYTHON_VERSION_MIN)")

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Compatibility
101101
-------------
102102

103103
- Plone 6.0 (version 2.x)
104-
- Python 3.12+
104+
- Python 3.11+
105105

106106
For Plone 4.x and 5.x support, use version 1.x of this package.
107107

0 commit comments

Comments
 (0)