Skip to content

Commit ecbef41

Browse files
fix(ci): adjust ci py versions to match current sdk versions (#283)
1 parent 261fc99 commit ecbef41

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
matrix:
4848
os: [ubuntu-latest, macos-latest]
49-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
49+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
5050
runs-on: ${{ matrix.os }}
5151
steps:
5252
- name: Install Java

languages/python/templates/pyproject.mustache

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ name = "{{{pythonPackageName}}}"
33
version = "v0.0.1a"
44
description = "{{{appName}}}"
55
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
6-
requires-python = ">=3.9,<4.0"
6+
requires-python = ">=3.10,<4.0"
77
readme = "README.md"
88
classifiers = [
99
"Programming Language :: Python :: 3",
1010
"License :: OSI Approved :: Apache Software License",
1111
"Operating System :: OS Independent",
12-
"Programming Language :: Python :: 3.9",
1312
"Programming Language :: Python :: 3.10",
1413
"Programming Language :: Python :: 3.11",
1514
"Programming Language :: Python :: 3.12",
1615
"Programming Language :: Python :: 3.13",
1716
"Programming Language :: Python :: 3.14",
17+
"Programming Language :: Python :: 3.15",
1818
]
1919
dependencies = [
2020
"stackit-core>=0.0.1a",
21-
"requests>=2.32.3",
21+
"requests>=2.33.0",
2222
"pydantic>=2.9.2",
2323
"python-dateutil>=2.9.0.post0",
2424
]
@@ -29,8 +29,8 @@ Issues = "https://github.com/{{{gitUserId}}}/{{{gitRepoId}}}/issues"
2929

3030
[dependency-groups]
3131
dev = [
32-
"black>=24.8.0",
33-
"pytest>=8.3.3",
32+
"black>=26.3.1",
33+
"pytest>=9.1.1",
3434
"flake8>=5.0.3 ; python_full_version < '3.12'",
3535
"flake8>=6.0.1 ; python_full_version >= '3.12'",
3636
"flake8-black>=0.3.6",

0 commit comments

Comments
 (0)