-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: use dependency-groups Signed-off-by: Henry Schreiner <[email protected]> * Update noxfile.py --------- Signed-off-by: Henry Schreiner <[email protected]>
- Loading branch information
Showing
5 changed files
with
52 additions
and
59 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,11 +1,10 @@ | ||
version: 2 | ||
build: | ||
os: ubuntu-20.04 | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
|
||
python: | ||
install: | ||
- requirements: requirements-test.txt | ||
- method: pip | ||
path: . | ||
python: "3.12" | ||
commands: | ||
- asdf plugin add uv | ||
- asdf install uv latest | ||
- asdf global uv latest | ||
- uv run --group docs sphinx-build -T -b html -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT/html |
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 |
---|---|---|
|
@@ -16,8 +16,7 @@ keywords = [ | |
] | ||
license = { text = "Apache-2.0" } | ||
authors = [ | ||
{ name = "Alethea Katherine Flowers" }, | ||
{ email = "[email protected]" }, | ||
{ name = "Alethea Katherine Flowers", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
|
@@ -116,3 +115,21 @@ enable_error_code = [ "ignore-without-code", "redundant-expr", "truthy-bool" ] | |
[[tool.mypy.overrides]] | ||
module = [ "argcomplete", "colorlog.*", "py", "tox.*" ] | ||
ignore_missing_imports = true | ||
|
||
[dependency-groups] | ||
test = [ | ||
"coverage[toml]>=7.2", | ||
"pytest>=6.0", | ||
"pytest-cov", | ||
] | ||
docs = [ | ||
"myst-parser", | ||
"sphinx>=3.0", | ||
"sphinx-autobuild", | ||
"sphinx-tabs", | ||
"witchhazel", | ||
] | ||
dev = [ | ||
{ include-group = "docs" }, | ||
{ include-group = "test" }, | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.