Skip to content

Commit

Permalink
Drop support for python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
shatakshiiii committed Feb 5, 2024
1 parent 6a3dcd3 commit ed600b2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
TOXENV: pkg

steps:
- name: Switch to using Python 3.9 by default
- name: Switch to using Python 3.10 by default
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10

- name: Install tox
run: python3 -m pip install --user "tox>=4.0.0"
Expand Down
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.9"
min_python: "3.10"
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.9
- --python-version=3.10
pass_filenames: false

- repo: https://github.com/jazzband/pip-tools
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Note: The `-p auto` flag will run multiple tests in parallel.
Note: The specific Python interpreter will need to be pre-installed on your system, e.g.:

```bash
sudo dnf install python3.9
sudo dnf install python3.10
```

To review the specific commands and configuration for each of the integration, sanity, and unit factors:
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Note: The `-p auto` flag will run multiple tests in parallel.
Note: The specific Python interpreter will need to be pre-installed on your system, e.g.:

```bash
sudo dnf install python3.9
sudo dnf install python3.10
```

To review the specific commands and configuration for each of the integration, sanity, and unit factors:
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" = "[email protected]"}]
authors = [{"name" = "Bradley A. Thornton", "email" = "[email protected]"}]
requires-python = ">=3.9"
requires-python = ">=3.10"
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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
Expand Down

0 comments on commit ed600b2

Please sign in to comment.