Skip to content

Commit deec435

Browse files
committed
fix(python): Remove support for 3.09 and 3.10
1 parent 2c031ed commit deec435

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/atest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10, 3.11, 3.12, 3.13, 3.14]
14+
python-version: [3.11, 3.12, 3.13, 3.14]
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10, 3.11, 3.12, 3.13, 3.14]
14+
python-version: [3.11, 3.12, 3.13, 3.14]
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10, 3.11, 3.12, 3.13, 3.14]
14+
python-version: [3.11, 3.12, 3.13, 3.14]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ classifiers = [
2929
"Development Status :: 5 - Production/Stable",
3030
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
3131
"Operating System :: OS Independent",
32-
"Programming Language :: Python :: 3.9",
33-
"Programming Language :: Python :: 3.10",
3432
"Programming Language :: Python :: 3.11",
3533
"Programming Language :: Python :: 3.12",
3634
"Programming Language :: Python :: 3.13",
35+
"Programming Language :: Python :: 3.14",
3736
"Framework :: Robot Framework",
3837
"Framework :: Robot Framework :: Library",
3938
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)