Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.11, 3.12]
python-version: [3.13, 3.14]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -69,4 +69,4 @@ jobs:
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check, github-check].
reporter: github-pr-check
reporter: github-pr-check
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### BREAKING CHANGE
- Raise minimum supported Python version to 3.13.

### Chore
- Validate runtime/tooling compatibility on Python 3.14.

## v6.0.0 (2025-10-07)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Chartreuse leverages [Helm Hooks](https://helm.sh/docs/topics/charts_hooks/), th

### Requirements

- Python >= 3.7
- Python >= 3.13
- Using Helm to deploy you application
- This Python package requires the `expecteddeploymentscales.wiremind.io` Kubernetes `Custom Resource Definition`:

Expand Down
2 changes: 1 addition & 1 deletion example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.13

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion example/Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Only used for e2e tests. Do not use in production.
# For Wiremind use only since it uses our private package wiremind-python
FROM python:3.12
FROM python:3.13

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion example/Dockerfile-dev-auth
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Only used for e2e tests. Do not use in production.
# For Wiremind use only since it uses our private package wiremind-python

FROM python:3.12
FROM python:3.13

WORKDIR /app

Expand Down
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ authors = [{ name = "wiremind", email = "dev@wiremind.io" }]
license="LGPL-3.0-or-later"
urls = { github = "https://github.com/wiremind/chartreuse"}
scripts = {chartreuse-upgrade = "chartreuse.chartreuse_upgrade:main"}
requires-python = ">=3.11.0"
requires-python = ">=3.13.0"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

dependencies = [
"alembic",
Expand Down Expand Up @@ -50,7 +55,7 @@ dev = [

[tool.ruff]
line-length = 120
target-version = "py311"
target-version = "py313"

[tool.ruff.lint]
select = [
Expand All @@ -76,4 +81,4 @@ known-first-party = ["chartreuse"]
log_level = "INFO"
# Deterministic ordering for tests; useful for pytest-xdist.
env = ["PYTHONHASHSEED=0"]
filterwarnings = ["ignore::pytest.PytestUnknownMarkWarning"]
filterwarnings = ["ignore::pytest.PytestUnknownMarkWarning"]
Loading