Skip to content

Commit bea0feb

Browse files
authored
Merge pull request #23 from gediminasz/python-3.10-only
Support only Python 3.10
2 parents 0793725 + 274d625 commit bea0feb

File tree

7 files changed

+964
-928
lines changed

7 files changed

+964
-928
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.5"]
10+
python-version: ["3.10"]
1111
salt-version: ["3006.*", "3007.*"]
1212
exclude:
1313
- python-version: "3.12.5"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ __pycache__
22
.DS_Store
33
.ignore
44
.mypy_cache
5-
.python-version
65
.slskit
76
.tags
87
.venv

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- 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
6+
- Supported Python versions: 3.10
7+
- Supported Salt versions: 3006, 3007
8+
39
## 2024.9.0
410

511
- 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.

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ snapshots:
1818
publish:
1919
rm -rfv ./dist
2020
poetry publish -v --build
21+
22+
lock:
23+
poetry lock --regenerate

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Commands:
2020
template render a file template for specified minions
2121
```
2222

23-
- Supported Python versions: 3.8, 3.9, 3.10, 3.11, 3.12.5
23+
- Supported Python versions: 3.10
2424
- Supported Salt versions: 3006, 3007
2525

2626
Known issues:

poetry.lock

Lines changed: 952 additions & 924 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["salt", "saltstack", "sls"]
1010
classifiers = ["Topic :: Software Development :: Quality Assurance"]
1111

1212
[tool.poetry.dependencies]
13-
python =">=3.8, <3.13"
13+
python = "3.10.*"
1414
click = "*"
1515
colorlog = "*"
1616
funcy = "*"

0 commit comments

Comments
 (0)