From 71c631b836dd4d679921a6062ff4dce7e09a197d Mon Sep 17 00:00:00 2001 From: Roald Nefs Date: Sun, 7 Jan 2024 14:20:15 +0100 Subject: [PATCH] chore: drop python 3.6 support Signed-off-by: Roald Nefs --- CHANGELOG.md | 3 +++ pyproject.toml | 3 +-- tox.ini | 6 +----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bad2c5..2a6f8c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)). diff --git a/pyproject.toml b/pyproject.toml index eaca791..2b652ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, ] @@ -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", diff --git a/tox.ini b/tox.ini index 6a7a99e..97198d4 100644 --- a/tox.ini +++ b/tox.ini @@ -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] @@ -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}