Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: enable py311 tests #437

Merged
merged 1 commit into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
REPORTS_DIR: CI_reports
PYTHON_VERISON: "3.10"
POETRY_VERSION: "1.1.11"
POETRY_VERSION: "1.1.15"

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
DIST_DIR: dist
DIST_ARTIFACT: python-dist
PYTHON_VERISON: "3.10"
POETRY_VERSION: "1.1.11"
POETRY_VERSION: "1.1.15"

jobs:
release_candidate:
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ on:

env:
REPORTS_DIR: CI_reports
PYTHON_VERISON_DEFAULT: "3.10"
POETRY_VERSION: "1.1.11"
PYTHON_VERISON_DEFAULT: "3.11"
POETRY_VERSION: "1.1.15"

jobs:
coding-standards:
Expand Down Expand Up @@ -66,7 +66,7 @@ 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'
Expand Down Expand Up @@ -102,7 +102,8 @@ 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"
Expand All @@ -113,6 +114,10 @@ jobs:
os: 'ubuntu-latest'
python-version: '3.6'
toxenv-factor: 'lowest'
exclude:
- # broken poetry installer - see https://github.com/CycloneDX/cyclonedx-python/actions/runs/3435061093/jobs/5727124247#step:6:15
os: 'macos-latest'
python-version: '3.11'
steps:
- name: Checkout
# see https://github.com/actions/checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
DIST_DIR: dist
DIST_ARTIFACT: python-dist
PYTHON_VERISON: "3.10"
POETRY_VERSION: "1.1.11"
POETRY_VERSION: "1.1.15"

jobs:
release-PyPI:
Expand Down