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

Move cadquery-ocp-stubs from [development] to new [stubs] and exclude from [all] (optional dependencies) #878

Merged
merged 5 commits into from
Jan 23, 2025
Merged
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
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ ocp_vscode = [

# development dependencies
development = [
"cadquery-ocp-stubs >= 7.8, < 7.9",
"wheel",
"pytest",
"pytest-cov",
Expand All @@ -69,6 +68,11 @@ development = [
"black",
]

# typing stubs for the OCP CAD kernel
stubs = [
"cadquery-ocp-stubs >= 7.8, < 7.9",
]

# dependency to run the pytest benchmarks
benchmark = [
"pytest-benchmark",
Expand All @@ -90,6 +94,7 @@ all = [
"build123d[development]",
"build123d[benchmark]",
"build123d[docs]",
# "build123d[stubs]", # excluded for now as mypy fails
]

[tool.setuptools.packages.find]
Expand Down
Loading