Skip to content

Commit fee0f52

Browse files
authored
Remove LXML from fprime-tools (nasa#262)
* Removing LXML from fprime-tools * Upgrading past Python 3.8
1 parent 8a0fc0f commit fee0f52

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/fprime-tools-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

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

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
fprime-version: ["v3.4.3", "v3.5.1", "v3.6.0", "devel"]
1818
exclude:
1919
- python-version: 3.13

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "fprime-tools"
77
dynamic = ["version"]
88
description = "F Prime Flight Software tooling, helpers and core data types"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = {file = "LICENSE.txt"}
1212
keywords = ["fprime", "embedded", "nasa", "flight", "software"]
1313
authors = [
@@ -22,7 +22,6 @@ classifiers = [
2222
"Operating System :: POSIX",
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
@@ -33,7 +32,6 @@ classifiers = [
3332
]
3433

3534
dependencies = [
36-
"lxml>=4.6.3",
3735
"Markdown>=3.3.4",
3836
"pexpect>=4.8.0",
3937
"pytest>=6.2.4",

0 commit comments

Comments
 (0)