Skip to content

Commit

Permalink
chore: drop python 3.6 support
Browse files Browse the repository at this point in the history
Signed-off-by: Roald Nefs <info@roaldnefs.com>
  • Loading branch information
roaldnefs committed Jan 7, 2024
1 parent 1e79e8b commit 47aecc6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes in **salt-lint** are documented below.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Deprecated
- Drop Python 3.6 support ([#319](https://github.com/warpnet/salt-lint/pull/319)).

### Added
- Add Python 3.12 support ([#315](https://github.com/warpnet/salt-lint/pull/315)).
- Lookup configuration file in parent directory ([#305](https://github.com/warpnet/salt-lint/pull/305)).
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dynamic = ["version"]
name = "salt-lint"
description = "A command-line utility that checks for best practices in SaltStack."
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.7"
authors = [
{name = "Roald Nefs", email = "roald.nefs@warpnet.nl"},
]
Expand All @@ -29,7 +29,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tox]
isolated_build = True
envlist = lint,{py36,py37,py38,py39,py310,py311,py312}-install,mypy
envlist = lint,{py37,py38,py39,py310,py311,py312}-install,mypy
skip_missing_interpreters = True

[testenv]
Expand All @@ -28,10 +28,6 @@ commands =
python setup.py bdist_wheel
pip install --no-index --find-links=dist salt-lint

[testenv:py36-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}

[testenv:py37-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}
Expand Down

0 comments on commit 47aecc6

Please sign in to comment.