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: 4 additions & 0 deletions .github/workflows/build-virtualenv-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand Down Expand Up @@ -74,6 +76,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand Down Expand Up @@ -82,6 +84,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Commodore also supports additional processing on the output of Kapitan, such as

## System Requirements

* Python 3.10 - 3.12 with `python3-dev` and `python3-venv` updated
* Python 3.10 - 3.14 with `python3-dev` and `python3-venv` updated
* [jsonnet-bundler](https://github.com/jsonnet-bundler/jsonnet-bundler)
* Our fork [projectsyn/jsonnet-bundler](https://github.com/projectsyn/jsonnet-bundler) is currently recommended.
It parallelizes fetching of dependencies, which speeds up Commodore significantly, and has fixes to make the dependency fetching more deterministic.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ We recommend that you use the Commodore Python package provided on PyPI to make
=== Prerequisites

* `git`
* A Python version between 3.10 and 3.12 as `python3` and the Python `venv` module.
* A Python version between 3.10 and 3.14 as `python3` and the Python `venv` module.
We recommend that you install Python and the `venv` module with your preferred package manager.
* Installation may require a working C compiler, the Python 3 development package, and the FFI development package on some operating systems.
For Commodore v1.29.1 and newer, all dependencies should be available as prebuilt wheels for Linux and macOS.
Expand Down
10 changes: 5 additions & 5 deletions docs/modules/ROOT/pages/how-to/installing-commodore.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ Please check your operating system's documentation for instructions to setup a w
+
[source,bash]
----
uv tool install --python=python3.12 --python-preference=system syn-commodore
uv tool install --python=python3.14 --python-preference=system syn-commodore
----
+
[TIP]
====
Commodore currently only supports Python 3.10 - Python 3.12.
Commodore currently supports Python 3.10 - Python 3.14.

This command will prefer using your system's version of Python 3.12.
However, `uv` will download a copy of Python 3.12 if `python3.12` isn't available on your system.
This command will prefer using your system's version of Python 3.14.
However, `uv` will download a copy of Python 3.14 if `python3.14` isn't available on your system.

If you'd prefer to use your system's `python3.10` or `python3.11` you can adjust the command accordingly.
If you'd prefer to use your system's `python3`, you can omit the `--python` and `--python-preference` flags.
====
+
[TIP]
Expand Down
9 changes: 6 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.10, <3.13"
python = ">=3.10, <3.15"
# NOTE: We restrict boto3/botocore versions to reduce complexity of Poetry's
# dependency resolution significantly, cf.
# https://github.com/orgs/python-poetry/discussions/8165#discussioncomment-6387378
Expand Down
32 changes: 28 additions & 4 deletions tox.mk
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lintenv_mypy:
lintenv_black:
$(TOX_COMMAND) -e black --notest

.PHONY: test_py3.10 test_py3.11 test_py3.12
.PHONY: test_py3.10 test_py3.11 test_py3.12 test_py3.13 test_py3.14

test_py3.10:
$(TOX_COMMAND) -e py310
Expand All @@ -50,7 +50,13 @@ test_py3.11:
test_py3.12:
$(TOX_COMMAND) -e py312

.PHONY: testenv_py3.10 testenv_py3.11 testenv_py3.12
test_py3.13:
$(TOX_COMMAND) -e py313

test_py3.14:
$(TOX_COMMAND) -e py314

.PHONY: testenv_py3.10 testenv_py3.11 testenv_py3.12 testenv_py3.13 testenv_py3.14

testenv_py3.10:
$(TOX_COMMAND) -e py310 --notest
Expand All @@ -61,7 +67,13 @@ testenv_py3.11:
testenv_py3.12:
$(TOX_COMMAND) -e py312 --notest

.PHONY: bench_py3.10 bench_py3.11 bench_py3.12
testenv_py3.13:
$(TOX_COMMAND) -e py313 --notest

testenv_py3.1k:
$(TOX_COMMAND) -e py314 --notest

.PHONY: bench_py3.10 bench_py3.11 bench_py3.12 bench_py3.13 bench_py3.14

bench_py3.10:
$(TOX_COMMAND) -e py310-bench
Expand All @@ -72,7 +84,13 @@ bench_py3.11:
bench_py3.12:
$(TOX_COMMAND) -e py312-bench

.PHONY: benchenv_py3.10 benchenv_py3.11 benchenv_py3.12
bench_py3.13:
$(TOX_COMMAND) -e py312-bench

bench_py3.14:
$(TOX_COMMAND) -e py312-bench

.PHONY: benchenv_py3.10 benchenv_py3.11 benchenv_py3.12 benchenv_py3.13 benchenv_py3.14

benchenv_py3.10:
$(TOX_COMMAND) -e py310-bench --notest
Expand All @@ -82,3 +100,9 @@ benchenv_py3.11:

benchenv_py3.12:
$(TOX_COMMAND) -e py312-bench --notest

benchenv_py3.13:
$(TOX_COMMAND) -e py313-bench --notest

benchenv_py3.14:
$(TOX_COMMAND) -e py314-bench --notest
Loading