Skip to content

Commit 8c4cac4

Browse files
authored
chore: reintroduce python3.10 support (#96)
* chore: reintroduce python3.10 support * ci * changelog
1 parent a6d95a1 commit 8c4cac4

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
strategy:
6767
fail-fast: false
6868
matrix:
69-
python-version: ['3.11', '3.12', '3.13']
69+
python-version: ['3.10', '3.11', '3.12', '3.13']
7070
plone-version: ['6.2-latest', '6.1-latest', '6.0-latest']
7171
env:
7272
PYTHON_VERSION: ${{ matrix.python-version }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ config: instance/etc/zope.ini
7070
requirements-mxdev.txt: ## Generate constraints file
7171
@echo "$(GREEN)==> Generate constraints file$(RESET)"
7272
@echo '-c https://dist.plone.org/release/$(PLONE_VERSION)/constraints.txt' > requirements.txt
73-
@uvx mxdev -c mx.ini
73+
@uvx "mxdev[uv]" -c mx.ini
7474

7575
$(VENV_FOLDER): requirements-mxdev.txt ## Install dependencies
7676
@echo "$(GREEN)==> Install environment$(RESET)"

news/90.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
add plone 6.2 support, remove python 3.10
1+
add plone 6.2 support

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "OIDC support for Plone sites"
99
readme = "README.md"
1010
license = "GPL-2.0-only"
11-
requires-python = ">=3.11"
11+
requires-python = ">=3.10"
1212
authors = [
1313
{ name = "Mauro Amico", email = "mauro.amico@gmail.com" },
1414
{ name = "Érico Andrei", email = "ericof@plone.org" },
@@ -31,6 +31,7 @@ classifiers = [
3131
"Framework :: Plone :: 6.1",
3232
"Framework :: Plone :: 6.2",
3333
"Programming Language :: Python",
34+
"Programming Language :: Python :: 3.10",
3435
"Programming Language :: Python :: 3.11",
3536
"Programming Language :: Python :: 3.12",
3637
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)