Datasets:
Matthew Franglen
commited on
Commit
•
ab0195f
1
Parent(s):
1704480
Set up lxml for direct use
Browse files- .pylintrc +1 -0
- poetry.lock +15 -1
- pyproject.toml +1 -0
.pylintrc
CHANGED
@@ -26,6 +26,7 @@ clear-cache-post-run=no
|
|
26 |
# be loaded. Extensions are loading into the active Python interpreter and may
|
27 |
# run arbitrary code.
|
28 |
extension-pkg-allow-list=
|
|
|
29 |
|
30 |
# A comma-separated list of package or module names from where C extensions may
|
31 |
# be loaded. Extensions are loading into the active Python interpreter and may
|
|
|
26 |
# be loaded. Extensions are loading into the active Python interpreter and may
|
27 |
# run arbitrary code.
|
28 |
extension-pkg-allow-list=
|
29 |
+
lxml,
|
30 |
|
31 |
# A comma-separated list of package or module names from where C extensions may
|
32 |
# be loaded. Extensions are loading into the active Python interpreter and may
|
poetry.lock
CHANGED
@@ -810,6 +810,20 @@ html5 = ["html5lib"]
|
|
810 |
htmlsoup = ["BeautifulSoup4"]
|
811 |
source = ["Cython (>=0.29.35)"]
|
812 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
813 |
[[package]]
|
814 |
name = "mccabe"
|
815 |
version = "0.7.0"
|
@@ -1745,4 +1759,4 @@ multidict = ">=4.0"
|
|
1745 |
[metadata]
|
1746 |
lock-version = "2.0"
|
1747 |
python-versions = ">=3.11,<3.12"
|
1748 |
-
content-hash = "
|
|
|
810 |
htmlsoup = ["BeautifulSoup4"]
|
811 |
source = ["Cython (>=0.29.35)"]
|
812 |
|
813 |
+
[[package]]
|
814 |
+
name = "lxml-stubs"
|
815 |
+
version = "0.4.0"
|
816 |
+
description = "Type annotations for the lxml package"
|
817 |
+
optional = false
|
818 |
+
python-versions = "*"
|
819 |
+
files = [
|
820 |
+
{file = "lxml-stubs-0.4.0.tar.gz", hash = "sha256:184877b42127256abc2b932ba8bd0ab5ea80bd0b0fee618d16daa40e0b71abee"},
|
821 |
+
{file = "lxml_stubs-0.4.0-py3-none-any.whl", hash = "sha256:3b381e9e82397c64ea3cc4d6f79d1255d015f7b114806d4826218805c10ec003"},
|
822 |
+
]
|
823 |
+
|
824 |
+
[package.extras]
|
825 |
+
test = ["coverage[toml] (==5.2)", "pytest (>=6.0.0)", "pytest-mypy-plugins (==1.9.3)"]
|
826 |
+
|
827 |
[[package]]
|
828 |
name = "mccabe"
|
829 |
version = "0.7.0"
|
|
|
1759 |
[metadata]
|
1760 |
lock-version = "2.0"
|
1761 |
python-versions = ">=3.11,<3.12"
|
1762 |
+
content-hash = "ed68621ad723c916b31b4c1bff12d4bbad1103322574e3227e500e12e22d750b"
|
pyproject.toml
CHANGED
@@ -20,6 +20,7 @@ typer = "^0.9.0"
|
|
20 |
[tool.poetry.group.dev.dependencies]
|
21 |
black = "^23.9.1"
|
22 |
isort = "^5.12.0"
|
|
|
23 |
mypy = "^1.5.1"
|
24 |
pandas-stubs = "^2.1.1.230928"
|
25 |
pylint = "^3.0.1"
|
|
|
20 |
[tool.poetry.group.dev.dependencies]
|
21 |
black = "^23.9.1"
|
22 |
isort = "^5.12.0"
|
23 |
+
lxml-stubs = "^0.4.0"
|
24 |
mypy = "^1.5.1"
|
25 |
pandas-stubs = "^2.1.1.230928"
|
26 |
pylint = "^3.0.1"
|