Skip to content

Commit

Permalink
feat: Drop support for Python 3.6, add support for Python 3.11 (#92)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Horton <paul.horton@owasp.org>
  • Loading branch information
madpah committed Mar 28, 2024
1 parent e4fe83b commit 1a455be
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 159 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/poetry.yml
Expand Up @@ -49,10 +49,10 @@ jobs:
matrix:
include:
- # test with the locked dependencies
python-version: '3.10'
python-version: '3.11'
toxenv-factor: 'locked'
- # test with the lowest dependencies
python-version: '3.6'
python-version: '3.7'
toxenv-factor: 'lowest'
steps:
- name: Checkout
Expand Down Expand Up @@ -86,16 +86,16 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
python-version:
- "3.10" # highest supported
- "3.11" # highest supported
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "3.6" # lowest supported
- "3.7" # lowest supported
toxenv-factor: ['locked']
include:
- # test with the lowest dependencies
os: 'ubuntu-latest'
python-version: '3.6'
python-version: '3.7'
toxenv: 'lowest'
timeout-minutes: 15
steps:
Expand Down

0 comments on commit 1a455be

Please sign in to comment.