Skip to content

Commit

Permalink
Merge pull request #121 from StephenSorriaux/feat/python3.10
Browse files Browse the repository at this point in the history
Now testing using Python 3.10 too
  • Loading branch information
StephenSorriaux authored Jan 24, 2022
2 parents 547ff8c + 8d6f29f commit 21bee9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [2-slim, 3.5-slim, 3.6-slim, 3.7-slim, 3.8-slim, 3.9-slim]
python_version: [2-slim, 3.5-slim, 3.6-slim, 3.7-slim, 3.8-slim, 3.9-slim, 3.10-slim]
group: [1, 2]

steps:
Expand All @@ -21,10 +21,10 @@ jobs:
run: |
set -e
docker info
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
pip install -r test-requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@ This library is tested with the following versions of Python:
* Python 3.7
* Python 3.8
* Python 3.9
* Python 3.10

## Ansible compatibility
To date, this library is compatible with every versions of Ansible 2.X (`ansible`/`ansible-core` 2.X or `ansible` 4.X).
Expand Down

0 comments on commit 21bee9e

Please sign in to comment.