-
Notifications
You must be signed in to change notification settings - Fork 61
bump http-client-python 0.5.0 #2981
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
9a87631
d091a8a
9c8569b
584a2b6
5720f65
a8e1c40
cce2a65
37626dc
aae64ed
95e043e
2b24c81
c38af8e
56e3096
e2897a0
94be1cd
05dfeef
555c3b7
bc61e3f
3bb65dc
159befc
eae23e8
5b31264
0c02f61
944c4a9
8a9e510
751dc8d
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,8 @@ | ||
| --- | ||
| changeKind: internal | ||
| packages: | ||
| - "@autorest/python" | ||
| - "@azure-tools/typespec-python" | ||
| --- | ||
|
|
||
| Bump @typespec/http-client-python 0.5.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1 @@ | ||
| azure-pylint-guidelines-checker==0.0.8 | ||
| colorama==0.4.6 | ||
| debugpy==1.8.9 | ||
| pytest==8.3.4 | ||
| tox==4.23.2 | ||
| coverage==7.6.9 | ||
| black==24.10.0 | ||
| setuptools==73.0.1 | ||
| -r ../packages/typespec-python/dev_requirements.txt | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,4 @@ | ||
| -e . | ||
| -e ./generator | ||
| -r ../../eng/requirements.txt | ||
| -r ../../eng/dev_requirements.txt | ||
| ptvsd==4.3.2 | ||
| types-PyYAML==6.0.12.8 | ||
| invoke==2.2.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1 @@ | ||
| black==24.4.0 | ||
| click==8.1.3 | ||
| docutils==0.19 | ||
| Jinja2==3.1.4 | ||
| m2r2==0.3.3 | ||
| MarkupSafe==2.1.2 | ||
| mistune==0.8.4 | ||
| pathspec==0.11.1 | ||
| platformdirs==3.2.0 | ||
| PyYAML==6.0.1 | ||
| tomli==2.0.1 | ||
| setuptools==69.2.0 | ||
| json-rpc==1.14.0 | ||
|
Member
Author
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. Removed dependencies are already declared in pygen. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,15 +9,15 @@ ignore=_generated,samples,examples,test,tests,doc,.tox,generated_samples | |
| [MESSAGES CONTROL] | ||
|
|
||
| # Add enable for useless disables | ||
| enable=useless-suppression | ||
| # enable=useless-suppression | ||
|
Member
Author
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. I fix the CI to enable pylint for autorest.python then some tiny lint issues are reporeted. I disable some specific items and we could fix them in another PR. |
||
|
|
||
| # For all codes, run 'pylint --list-msgs' or go to 'https://pylint.readthedocs.io/en/latest/reference_guide/features.html' | ||
| # locally-disabled: Warning locally suppressed using disable-msg | ||
| # cyclic-import: because of https://github.com/PyCQA/pylint/issues/850 | ||
| # too-many-arguments: Due to the nature of the CLI many commands have large arguments set which reflect in large arguments set in corresponding methods. | ||
| # too-many-lines: Due to code generation many files end up with too many lines. | ||
| # Let's black deal with bad-continuation | ||
| disable=missing-docstring,locally-disabled,fixme,cyclic-import,too-many-arguments,invalid-name,duplicate-code,too-few-public-methods,consider-using-f-string,super-with-arguments,redefined-builtin,import-outside-toplevel,client-suffix-needed,unnecessary-dunder-call,unnecessary-ellipsis,disallowed-name,consider-using-max-builtin,unknown-option-value | ||
| disable=missing-docstring,locally-disabled,fixme,cyclic-import,too-many-arguments,invalid-name,duplicate-code,too-few-public-methods,consider-using-f-string,super-with-arguments,redefined-builtin,import-outside-toplevel,client-suffix-needed,unnecessary-dunder-call,unnecessary-ellipsis,disallowed-name,consider-using-max-builtin,unknown-option-value,useless-suppression,too-many-instance-attributes | ||
|
|
||
| [FORMAT] | ||
| max-line-length=120 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| __path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore |
Uh oh!
There was an error while loading. Please reload this page.
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.
Although it is a little weird to install dependencies of subdirectory, we only need to update dependencies in one file after this change which is easier to maintain in the future.