Skip to content

Commit 5b187de

Browse files
committed
Remove Python 3.10 from CI matrix to streamline supported versions
1 parent 65d10c3 commit 5b187de

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
platform: [ 'windows-latest', 'ubuntu-latest' ]
37-
python-version: [ 'cp310', 'cp311', 'cp312', 'cp313', 'cp314' ]
37+
python-version: [ 'cp311', 'cp312', 'cp313', 'cp314' ]
3838
timeout-minutes: 35
3939
env:
4040
CONAN_REVISIONS_ENABLED: 1
@@ -49,7 +49,7 @@ jobs:
4949
enable-cache: true
5050
cache-dependency-glob: "uv.lock"
5151
- name: Build wheels
52-
uses: pypa/cibuildwheel@v2.23.3
52+
uses: pypa/cibuildwheel@v3.3.0
5353
env:
5454
CIBW_BUILD: "${{ matrix.python-version }}-win_amd64 ${{ matrix.python-version }}-manylinux_x86_64"
5555
CIBW_BUILD_FRONTEND: build[uv]

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ maintainers = [
1313
]
1414
description = "Python wrapper for the libcosim library"
1515
readme = "README.md"
16-
requires-python = ">=3.10, <3.15"
16+
requires-python = ">=3.11, <3.15"
1717
classifiers = [
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
2221
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)