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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.5"]
python-version: ["3.10"]
salt-version: ["3006.*", "3007.*"]
exclude:
- python-version: "3.12.5"
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ __pycache__
.DS_Store
.ignore
.mypy_cache
.python-version
.slskit
.tags
.venv
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

- Dropped support for all Python versions except 3.10 according to official Salt distribution: https://docs.saltproject.io/salt/install-guide/en/latest/topics/salt-python-version-support.html
- Supported Python versions: 3.10
- Supported Salt versions: 3006, 3007

## 2024.9.0

- Added `os.environ` [interpolation](https://docs.python.org/3/library/string.html#template-strings) for `slskit.yaml` config files, e.g. `${PWD}` can be used to reference files relative to working directory.
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ snapshots:
publish:
rm -rfv ./dist
poetry publish -v --build

lock:
poetry lock --regenerate
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Commands:
template render a file template for specified minions
```

- Supported Python versions: 3.8, 3.9, 3.10, 3.11, 3.12.5
- Supported Python versions: 3.10
- Supported Salt versions: 3006, 3007

Known issues:
Expand Down
1,876 changes: 952 additions & 924 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["salt", "saltstack", "sls"]
classifiers = ["Topic :: Software Development :: Quality Assurance"]

[tool.poetry.dependencies]
python =">=3.8, <3.13"
python = "3.10.*"
click = "*"
colorlog = "*"
funcy = "*"
Expand Down