Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pydocstyle as devel dependency #18

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pydocstyle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Pydocstyle
on: [push, pull_request]

jobs:
mypy:
pydocstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ install-tools: install-woke ## Install required utilities/tools
black --version
# check that correct Ruff version is installed
ruff --version
# check that correct Pydocstyle version is installed
pydocstyle --version


install-woke: ## Install woke, required for Inclusive Naming scan
Expand Down
26 changes: 25 additions & 1 deletion pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ distribution = false
[tool.pdm.dev-dependencies]
dev = [
"black==24.8.0",
"pydocstyle==6.3.0",
"fastparquet==2024.5.0", # Required for model evaluation (runtime, if parquet qna file is used)
"httpx==0.27.0",
"mypy==1.11.2",
Expand Down
Loading