-
Notifications
You must be signed in to change notification settings - Fork 1
security: apply all audit fixes (H-01 through I-04) #13
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
ad9d8cd
1454a30
46bca82
764a000
7642936
8169a0d
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 |
|---|---|---|
|
|
@@ -7,7 +7,6 @@ jobs: | |
| max-parallel: 4 | ||
| matrix: | ||
| python-version: | ||
| - "3.9" | ||
| - "3.10" | ||
| - "3.11" | ||
| - "3.12" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| class Error: | ||
| from abc import ABC | ||
|
|
||
|
|
||
| class Error(ABC): | ||
| code: str | ||
| func_name: str | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| black==25.9.0 | ||
| flake8>=4.0.1 | ||
| pytest==8.4.2 | ||
| pytest-cov==3.0.0 | ||
| coverage==5.3 | ||
| coveralls==2.1.2 | ||
| pytest-cov==7.1.0 | ||
| coverage==7.13.5 | ||
| coveralls==4.1.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Pinning Useful? React with πΒ / π. |
||
| setuptools==80.9.0 | ||
| wheel==0.45.1 | ||
| wheel==0.46.3 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1 @@ | ||
| flake8>=4.0.1 | ||
| astpretty==2.1.0 |
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.
set_traceRestricting
set_tracechecks to literal namespdbandipdbmisses common alias imports such asimport pdb as dbg; dbg.set_trace()orimport ipdb as debugger; debugger.set_trace(). Those are still debugger calls, and previous versions reported them, but this branch now lets them pass silently becausenode.func.value.idisdbg/debuggerinstead of one of the hard-coded identifiers.Useful? React with πΒ / π.