Skip to content

Commit

Permalink
Merge pull request #1872 from OpenC3/update_lxml
Browse files Browse the repository at this point in the history
Update python lxml
  • Loading branch information
ryanmelt authored Feb 2, 2025
2 parents c6c70d6 + 3d5fffa commit de860af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions openc3/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ boto3 = "^1.28.34"
cbor2 = "^5.4.6"
certifi = ">=2023.7.22,<2025.0.0"
chardet = "^5.1.0"
lxml = "^4.9.2"
lxml = "^5.3.0"
hiredis = "2.2.3"
idna = "^3.7"
jsonpath-ng = "^1.6.0"
Expand Down Expand Up @@ -129,4 +129,4 @@ target-version = "py310"

[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
max-complexity = 10
4 changes: 2 additions & 2 deletions openc3/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ boto3==1.28.34
cbor2==5.4.6
certifi==2024.7.4
chardet==5.1.0
lxml==4.9.2
lxml==5.3.0
hiredis==2.2.3
idna==3.7
jsonpath-ng==1.6.0
Expand All @@ -12,4 +12,4 @@ redis[hiredis]==4.6.0
schedule==1.2.0
websockets==11.0.3
paho-mqtt==2.1.0
watchdog==6.0.0
watchdog==6.0.0
4 changes: 2 additions & 2 deletions playwright/tests/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ export const test = base.extend<{
await page.locator('input[name="password"]').fill('admin')
await Promise.all([
page.waitForURL(`${baseURL}${toolPath}`),
page.locator('input:has-text("Sign In")').click(),
page.locator('button:has-text("Sign In")').click(),
])
await page.context().storageState({ path: 'adminStorageState.json' })
} else {
await page.locator('input[name="username"]').fill('operator')
await page.locator('input[name="password"]').fill('operator')
await Promise.all([
page.waitForURL(`${baseURL}${toolPath}`),
page.locator('input:has-text("Sign In")').click(),
page.locator('button:has-text("Sign In")').click(),
])
await page.context().storageState({ path: 'storageState.json' })
}
Expand Down

0 comments on commit de860af

Please sign in to comment.