Skip to content

Commit b7d5a4e

Browse files
authored
ci: enable py311 & bump poetry (#437)
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com> Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 86daf68 commit b7d5a4e

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
env:
1313
REPORTS_DIR: CI_reports
1414
PYTHON_VERISON: "3.10"
15-
POETRY_VERSION: "1.1.11"
15+
POETRY_VERSION: "1.1.15"
1616

1717
jobs:
1818
test:

.github/workflows/manual-release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
DIST_DIR: dist
1414
DIST_ARTIFACT: python-dist
1515
PYTHON_VERISON: "3.10"
16-
POETRY_VERSION: "1.1.11"
16+
POETRY_VERSION: "1.1.15"
1717

1818
jobs:
1919
release_candidate:

.github/workflows/python.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ on:
2929

3030
env:
3131
REPORTS_DIR: CI_reports
32-
PYTHON_VERISON_DEFAULT: "3.10"
33-
POETRY_VERSION: "1.1.11"
32+
PYTHON_VERISON_DEFAULT: "3.11"
33+
POETRY_VERSION: "1.1.15"
3434

3535
jobs:
3636
coding-standards:
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
include:
6868
- # test with the locked dependencies
69-
python-version: '3.10'
69+
python-version: '3.11'
7070
toxenv-factor: 'locked'
7171
- # test with the lowest dependencies
7272
python-version: '3.6'
@@ -102,7 +102,8 @@ jobs:
102102
matrix:
103103
os: [ubuntu-latest, windows-latest, macos-latest]
104104
python-version:
105-
- "3.10" # highest supported
105+
- "3.11" # highest supported
106+
- "3.10"
106107
- "3.9"
107108
- "3.8"
108109
- "3.7"
@@ -113,6 +114,10 @@ jobs:
113114
os: 'ubuntu-latest'
114115
python-version: '3.6'
115116
toxenv-factor: 'lowest'
117+
exclude:
118+
- # broken poetry installer - see https://github.com/CycloneDX/cyclonedx-python/actions/runs/3435061093/jobs/5727124247#step:6:15
119+
os: 'macos-latest'
120+
python-version: '3.11'
116121
steps:
117122
- name: Checkout
118123
# see https://github.com/actions/checkout

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
DIST_DIR: dist
3131
DIST_ARTIFACT: python-dist
3232
PYTHON_VERISON: "3.10"
33-
POETRY_VERSION: "1.1.11"
33+
POETRY_VERSION: "1.1.15"
3434

3535
jobs:
3636
release-PyPI:

0 commit comments

Comments
 (0)