forked from streamlink/streamlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from c-basalt/master
merge
- Loading branch information
Showing
2 changed files
with
24 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
# setup | ||
pip >=21.0.0 | ||
versioningit >=2.0.0,<3 # required for being able to run editable installs | ||
|
||
# tests | ||
pytest >=6.0.0 | ||
pytest-asyncio | ||
pytest-cov | ||
pytest-trio | ||
coverage[toml] | ||
requests-mock | ||
freezegun>=1.0.0 | ||
shtab | ||
versioningit >=2.0.0, <3 | ||
freezegun >=1.0.0 | ||
|
||
# required by script/generate-cdp.py | ||
inflection | ||
# code-coverage | ||
pytest-cov | ||
coverage[toml] | ||
|
||
# code-linting | ||
ruff ==0.0.272 | ||
|
||
# typing | ||
mypy | ||
lxml-stubs | ||
trio-typing | ||
types-freezegun | ||
types-requests | ||
types-urllib3 | ||
typing_extensions | ||
|
||
# scripts | ||
shtab # required by script/build-shell-completions.sh | ||
inflection # required by script/generate-cdp.py |
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,7 +1,13 @@ | ||
sphinx >=5.0.0, <7 | ||
furo ==2023.03.27 | ||
myst-parser >=1.0.0, <2 | ||
sphinx-design >=0.4.1, <1 | ||
versioningit >=2.0.0, <3 | ||
# setup | ||
versioningit >=2.0.0,<3 # required for reading the version string when building from git | ||
|
||
# build | ||
sphinx >=6.0.0,<8 | ||
|
||
# themes and extensions | ||
furo ==2023.07.26 | ||
myst-parser >=1.0.0,<3 | ||
sphinx-design ==0.5.0 | ||
|
||
# typing | ||
docutils-stubs |