Skip to content

Commit e642d5b

Browse files
committed
fix: remove Python 3.8 support and update classifiers for Python 3.14
Signed-off-by: Daniel Biehl <dbiehl@live.de>
1 parent d7fe624 commit e642d5b

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

hatch.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,11 @@ extra-dependencies = [
5656
python = "3.11"
5757
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
5858

59-
[envs.rfdevel38]
60-
python = "3.8"
61-
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
62-
6359
[envs.devel]
6460
python = "3.10"
6561

6662
[[envs.devel.matrix]]
67-
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
63+
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
6864
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
6965

7066
[envs.devel.overrides]

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ classifiers = [
3030
"Development Status :: 5 - Production/Stable",
3131
"License :: OSI Approved :: Apache Software License",
3232
"Operating System :: OS Independent",
33-
"Programming Language :: Python :: 3.8",
34-
"Programming Language :: Python :: 3.9",
3533
"Programming Language :: Python :: 3.10",
3634
"Programming Language :: Python :: 3.11",
3735
"Programming Language :: Python :: 3.12",
3836
"Programming Language :: Python :: 3.13",
37+
"Programming Language :: Python :: 3.14",
3938
"Programming Language :: Python :: Implementation :: CPython",
4039
"Topic :: Software Development :: Testing",
4140
"Topic :: Software Development :: Testing :: Acceptance",
@@ -49,7 +48,7 @@ classifiers = [
4948
"Framework :: Robot Framework",
5049
"Framework :: Robot Framework :: Tool",
5150
]
52-
requires-python = ">=3.8"
51+
requires-python = ">=3.10"
5352
dependencies = [
5453
"robotcode-core==1.9.0",
5554
"robotcode-plugin==1.9.0",
@@ -291,7 +290,7 @@ no_implicit_reexport = false
291290
[tool.pyright]
292291
exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
293292
typeCheckingMode = "off"
294-
pythonVersion = "3.8"
293+
pythonVersion = "3.10"
295294

296295

297296
[tool.commitizen]

0 commit comments

Comments
 (0)