This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rewrite HTML parsing with lxml
- Loading branch information
soulless-viewer
committed
Mar 17, 2023
1 parent
7de21ad
commit 4c9b1fb
Showing
4 changed files
with
127 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
lxml>=4.7.0 | ||
mkdocs>=1.1.0,<2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name="mkdocs-video", | ||
version="1.4.0", | ||
version="1.5.0", | ||
author="Mikalai Lisitsa", | ||
author_email="[email protected]", | ||
url="https://github.com/soulless-viewer/mkdocs-video", | ||
|
@@ -15,7 +15,8 @@ | |
license='MIT', | ||
packages=find_packages(), | ||
install_requires=[ | ||
"mkdocs>=1.1.0,<2" | ||
"mkdocs>=1.1.0,<2", | ||
"lxml>=4.7.0" | ||
], | ||
include_package_data=True, | ||
python_requires='>=3.6', | ||
|