Skip to content

Commit eb0fbab

Browse files
authored
Merge pull request #5 from stefanor/python3.14
Python 3.14 support
2 parents 3b49bab + 99eb0f1 commit eb0fbab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
10+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1111
os: [ubuntu-latest, windows-latest]
1212
deps: [base, optional]
1313
include:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def default_environment():
8888
isinstance(a.targets[0], ast.Name) and
8989
a.targets[0].id == "__version__" and
9090
isinstance(a.value, ast.Constant)):
91-
version = a.value.s
91+
version = a.value.value
9292

9393
setup(name='html5rdf',
9494
version=version,

0 commit comments

Comments
 (0)