Skip to content

Commit 951368d

Browse files
committed
fix build
1 parent 0f6f84a commit 951368d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

python/philologic/runtime/FragmentParser.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ def start(self, tag, attrib):
2626
if no_ns_k != k:
2727
del attrib[k]
2828
attrib[no_ns_k] = v
29+
import sys
30+
31+
print(self.current_el, tag, attrib, file=sys.stderr)
2932
new_el = etree.SubElement(self.current_el, tag, attrib)
3033
new_el.text = ""
3134
new_el.tail = ""

python/pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
[build-system]
3-
requires = ["setuptools>=61.0", "wheel", "build", "setuptools_scm[toml]>=6.2"]
3+
requires = ["setuptools>=61.0", "wheel", "build"]
44
build-backend = "setuptools.build_meta"
55

66
[project]
@@ -32,8 +32,6 @@ dependencies = [
3232
[project.scripts]
3333
philoload4 = "philologic.loadtime:philoload"
3434

35-
[tool.setuptools_scm]
36-
root = ".."
3735

3836
[tool.setuptools]
3937
packages = [

0 commit comments

Comments
 (0)