-
Notifications
You must be signed in to change notification settings - Fork 3
Add type checking changes #364
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| prune tests | ||
| prune .github | ||
| prune wiki | ||
| prune uv.lock | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,6 +32,9 @@ test = ["pytest", "hypothesis[numpy]", "pytest-cov"] | |
| types = ["pandas-stubs", "scipy-stubs", "types-PyYAML"] | ||
| dev = ["ruff", "deptry", "ty"] | ||
|
|
||
| [tool.deptry] | ||
| pep621_dev_dependency_groups = ["test", "dev", "types"] | ||
|
|
||
| [tool.coverage.run] | ||
| omit = ["qcore/constants.py", "qcore/formats.py"] | ||
|
|
||
|
|
@@ -40,9 +43,6 @@ omit = ["qcore/constants.py", "qcore/formats.py"] | |
| [tool.setuptools.package-dir] | ||
| qcore = "qcore" | ||
|
|
||
| [tool.setuptools.package-data] | ||
| "qcore" = ["registry/registry.txt"] | ||
|
|
||
|
||
| [tool.ruff.lint] | ||
| extend-select = [ | ||
| # isort imports | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
prunecommand is intended for directories. To exclude a single file likeuv.lock, theexcludecommand should be used. This ensures the file is correctly excluded from the source distribution.