Skip to content

Commit 6c9f062

Browse files
jvanderaaclaude
andcommitted
Merge branch 'develop' into drift-manager/develop/pr
Resolve poetry.lock conflict after lxml version update (#394) merged into develop. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 parents 16314a1 + d7ac150 commit 6c9f062

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

changes/393.dependencies

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pinning lxml version to support >=4.6.2,<7

circuit_maintenance_parser/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def parse_html(
208208
def clean_line(line):
209209
"""Clean up of undesired characters from Html."""
210210
try:
211-
return line.text.strip()
211+
return line.text.strip().replace("\r\n", "\n").replace("\r", "\n")
212212
except AttributeError:
213213
return line.strip().replace("\r\n", "\n").replace("\r", "\n")
214214

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ click = ">=7.1, <9.0"
2929
pydantic = ">=1.10.4,<3"
3030
icalendar = "^5.0.0"
3131
bs4 = "^0.0.2"
32-
lxml = ">=6.0.2"
32+
lxml = ">=4.6.2,<7"
3333
geopy = "^2.1.0"
3434
timezonefinder = ">=6.0.1,<9.0.0"
3535
backoff = "^2.2.1"

0 commit comments

Comments
 (0)