Skip to content

Commit abfa06d

Browse files
authored
Remove Python 3.9 and add Python 3.14 to supported versions list (#1264)
* Remove Python 3.9 from CI workflow 3.9 is now EOL: https://devguide.python.org/versions/ * Bump version to 1.6.2 and update Python requirement * Update Python environment versions in tox.ini
1 parent 000b987 commit abfa06d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
33+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3434

3535
steps:
3636
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "openhtf"
7-
version = "1.6.1"
7+
version = "1.6.2"
88
authors = [
99
{ name="The OpenHTF Authors"},
1010
]
1111
description = "OpenHTF, the open hardware testing framework."
1212
readme = "README.md"
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
dependencies = [
1515
"attrs>=19.3.0",
1616
"colorama>=0.4.6",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tox]
2-
env_list = py39,py310,py311,py312,py313
2+
env_list = py310,py311,py312,py313,py314
33

44
[gh-actions]
55
python =
6-
3.9: py39
76
3.10: py310
87
3.11: py311
98
3.12: py312
109
3.13: py313
10+
3.14: py314
1111

1212
[testenv]
1313
deps =

0 commit comments

Comments
 (0)