Skip to content

Commit

Permalink
Remove python 3.8 from testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
shatakshiiii committed Jan 19, 2024
1 parent 1e1c3d9 commit d06d769
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: generate_matrix
uses: coactions/dynamic-matrix@v1
with:
min_python: "3.8"
min_python: "3.9"
max_python: "3.12"
default_python: "3.11" # used by jobs in other_names
other_names: |
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ repos:
args:
- src
- tests
- --python-version=3.8
- --python-version=3.9
pass_filenames: false

- repo: https://github.com/jazzband/pip-tools
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["ansible", "collections", "tox"]
license = {text = "MIT"}
maintainers = [{"name" = "Ansible by Red Hat", "email" = "info@ansible.com"}]
authors = [{"name" = "Bradley A. Thornton", "email" = "bthornto@redhat.com"}]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
Expand All @@ -25,7 +25,6 @@ classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ set_env =
PIP_CONSTRAINT = {toxinidir}/requirements.txt
PRE_COMMIT_COLOR = always
TERM = xterm-256color
lint, py38, py39: PIP_CONSTRAINT = /dev/null
lint, py39: PIP_CONSTRAINT = /dev/null
commands_pre =
sh -c "rm -f .tox/.coverage* **/*.pyc 2>/dev/null || true"
commands =
Expand Down

0 comments on commit d06d769

Please sign in to comment.